From: ueno Date: Thu, 14 Dec 2000 10:56:23 +0000 (+0000) Subject: Fix typo. X-Git-Tag: apel-10_3~40 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=bffd046167893cf159e30e6413081d7887a7e4ed;p=elisp%2Fapel.git Fix typo. --- diff --git a/alist.el b/alist.el index 485107e..37522a5 100644 --- a/alist.el +++ b/alist.el @@ -40,7 +40,7 @@ return a new alist whose car is the new pair and cdr is ALIST." (defun del-alist (key alist) "Delete an element whose car equals KEY from ALIST. Return the modified ALIST." - (let ((pair (assoc item alist))) + (let ((pair (assoc key alist))) (if pair (delq pair alist) alist)))