aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorReiner Steib2006-09-11 11:15:54 +0000
committerReiner Steib2006-09-11 11:15:54 +0000
commite027c6e48d4c199a70366a951b3c771e16f6a486 (patch)
tree9c49844f6f5faeadd3db2aef441773188aa01861 /lisp
parentbcd8e1a907a3d055f4b1152231f15cf5a21fba5e (diff)
downloademacs-e027c6e48d4c199a70366a951b3c771e16f6a486.tar.gz
emacs-e027c6e48d4c199a70366a951b3c771e16f6a486.zip
(pushnew): Add missing `,'.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emacs-lisp/cl.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index def6ac8bdfa..5f3405576b7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12006-09-11 Reiner Steib <Reiner.Steib@gmx.de>
2
3 * emacs-lisp/cl.el (pushnew): Add missing `,'.
4
12006-09-11 David Kastrup <dak@gnu.org> 52006-09-11 David Kastrup <dak@gnu.org>
2 6
3 * help.el (string-key-binding, describe-key-briefly) 7 * help.el (string-key-binding, describe-key-briefly)
diff --git a/lisp/emacs-lisp/cl.el b/lisp/emacs-lisp/cl.el
index 9db3fc027d6..53bec05ddc3 100644
--- a/lisp/emacs-lisp/cl.el
+++ b/lisp/emacs-lisp/cl.el
@@ -160,7 +160,7 @@ an element already on the list.
160 (if (symbolp place) 160 (if (symbolp place)
161 (if (null keys) 161 (if (null keys)
162 `(let ((pushnew-internal ,place)) 162 `(let ((pushnew-internal ,place))
163 (add-to-list 'pushnew-internal x nil 'eql) 163 (add-to-list 'pushnew-internal ,x nil 'eql)
164 (setq ,place pushnew-internal)) 164 (setq ,place pushnew-internal))
165 (list 'setq place (list* 'adjoin x place keys))) 165 (list 'setq place (list* 'adjoin x place keys)))
166 (list* 'callf2 'adjoin x place keys))) 166 (list* 'callf2 'adjoin x place keys)))