From bffd046167893cf159e30e6413081d7887a7e4ed Mon Sep 17 00:00:00 2001 From: ueno Date: Thu, 14 Dec 2000 10:56:23 +0000 Subject: [PATCH] Fix typo. --- alist.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))) -- 1.7.10.4