From fa65505b4d8489ac5fde80737bde839a5acaef4d Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 7 Sep 1999 06:37:06 +0000 Subject: [PATCH] (push): Doc fix. --- lisp/subr.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5