]> git.eshelyaron.com Git - emacs.git/commitdiff
(push): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Tue, 7 Sep 1999 06:37:06 +0000 (06:37 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 7 Sep 1999 06:37:06 +0000 (06:37 +0000)
lisp/subr.el

index 0d781e0082e0c6e1be9f4eb7237d164fb529423f..7f145861ab3e80da0da81194fc008e57115aeecb 100644 (file)
@@ -52,7 +52,7 @@ BODY should be a list of lisp expressions."
   (list 'function (cons 'lambda cdr)))
 
 (defmacro push (newelt listname)
-  "Add NEWELT to the list which is the value of LISTNAME.
+  "Add NEWELT to the list stored in the symbol LISTNAME.
 This is equivalent to (setq LISTNAME (cons NEWELT LISTNAME)).
 LISTNAME must be a symbol."
   (list 'setq listname