]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix previous change.
authorRichard M. Stallman <rms@gnu.org>
Sun, 29 Aug 1999 20:27:40 +0000 (20:27 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 29 Aug 1999 20:27:40 +0000 (20:27 +0000)
lisp/subr.el

index a80383467d362cd4cd8faa3d08956595fe3aeff0..5d94a2aa9add103a7728a2535463f6d3f9c15216 100644 (file)
@@ -51,12 +51,12 @@ BODY should be a list of lisp expressions."
   ;; depend on backquote.el.
   (list 'function (cons 'lambda cdr)))
 
-(defmacro push (value listname)
-  "Add VALUE to the list which is the value of LISTNAME.
-This is equivalent to (setq LISTNAME (cons VALUE LISTNAME)).
+(defmacro push (newelt listname)
+  "Add NEWELT to the list which is the value of LISTNAME.
+This is equivalent to (setq LISTNAME (cons NEWELT LISTNAME)).
 LISTNAME must be a symbol."
   (list 'setq list
-       (list 'cons value list)))
+       (list 'cons newelt list)))
 
 (defmacro pop (listname)
   "Return the first element of LISTNAME's value, and remove it from the list.