changeset 72805:e5e7b6d129dd

(pushnew): Add missing `,'.
author Reiner Steib <Reiner.Steib@gmx.de>
date Mon, 11 Sep 2006 11:15:54 +0000
parents 939f0ad90003
children d148ed3e5bb4
files lisp/ChangeLog lisp/emacs-lisp/cl.el
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Mon Sep 11 09:47:43 2006 +0000
+++ b/lisp/ChangeLog	Mon Sep 11 11:15:54 2006 +0000
@@ -1,3 +1,7 @@
+2006-09-11  Reiner Steib  <Reiner.Steib@gmx.de>
+
+	* emacs-lisp/cl.el (pushnew): Add missing `,'.
+
 2006-09-11  David Kastrup  <dak@gnu.org>
 
 	* help.el (string-key-binding, describe-key-briefly)
--- a/lisp/emacs-lisp/cl.el	Mon Sep 11 09:47:43 2006 +0000
+++ b/lisp/emacs-lisp/cl.el	Mon Sep 11 11:15:54 2006 +0000
@@ -160,7 +160,7 @@
   (if (symbolp place)
       (if (null keys)
 	  `(let ((pushnew-internal ,place))
-	     (add-to-list 'pushnew-internal x nil 'eql)
+	     (add-to-list 'pushnew-internal ,x nil 'eql)
 	     (setq ,place pushnew-internal))
 	(list 'setq place (list* 'adjoin x place keys)))
     (list* 'callf2 'adjoin x place keys)))