aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1999-09-07 06:37:06 +0000
committerRichard M. Stallman1999-09-07 06:37:06 +0000
commitfa65505b4d8489ac5fde80737bde839a5acaef4d (patch)
treea606d88585d6c19d26ee34823a628c0e2c70a425
parent7baf49cf5e936ccbc63dd1ebcd223f27cf6aae41 (diff)
downloademacs-fa65505b4d8489ac5fde80737bde839a5acaef4d.tar.gz
emacs-fa65505b4d8489ac5fde80737bde839a5acaef4d.zip
(push): Doc fix.
-rw-r--r--lisp/subr.el2
1 files changed, 1 insertions, 1 deletions
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."
52 (list 'function (cons 'lambda cdr))) 52 (list 'function (cons 'lambda cdr)))
53 53
54(defmacro push (newelt listname) 54(defmacro push (newelt listname)
55 "Add NEWELT to the list which is the value of LISTNAME. 55 "Add NEWELT to the list stored in the symbol LISTNAME.
56This is equivalent to (setq LISTNAME (cons NEWELT LISTNAME)). 56This is equivalent to (setq LISTNAME (cons NEWELT LISTNAME)).
57LISTNAME must be a symbol." 57LISTNAME must be a symbol."
58 (list 'setq listname 58 (list 'setq listname