changeset 25580:b76f1a72649a

(push): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Tue, 07 Sep 1999 06:37:06 +0000
parents 5662c18836ae
children a066c27ca69e
files lisp/subr.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/subr.el	Tue Sep 07 03:25:35 1999 +0000
+++ b/lisp/subr.el	Tue Sep 07 06:37:06 1999 +0000
@@ -52,7 +52,7 @@
   (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