From: Richard M. Stallman Date: Tue, 7 Sep 1999 06:37:06 +0000 (+0000) Subject: (push): Doc fix. X-Git-Tag: emacs-pretest-21.0.90~6862 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fa65505b4d8489ac5fde80737bde839a5acaef4d;p=emacs.git (push): Doc fix. --- diff --git a/lisp/subr.el b/lisp/subr.el index 0d781e0082e..7f145861ab3 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -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