Fix typo.
authorueno <ueno>
Thu, 14 Dec 2000 10:56:23 +0000 (10:56 +0000)
committerueno <ueno>
Thu, 14 Dec 2000 10:56:23 +0000 (10:56 +0000)
alist.el

index 485107e..37522a5 100644 (file)
--- 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)))