projects
/
elisp
/
apel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
203c901
)
Fix typo.
author
ueno
<ueno>
Thu, 14 Dec 2000 10:56:23 +0000
(10:56 +0000)
committer
ueno
<ueno>
Thu, 14 Dec 2000 10:56:23 +0000
(10:56 +0000)
alist.el
patch
|
blob
|
history
diff --git
a/alist.el
b/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)))