1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 16:51:06 -07:00

(push): Fix typo.

This commit is contained in:
Dave Love 1999-08-31 13:12:46 +00:00
parent b27c699564
commit 22d85d00b0

View file

@ -55,8 +55,8 @@ BODY should be a list of lisp expressions."
"Add NEWELT to the list which is the value of LISTNAME.
This is equivalent to (setq LISTNAME (cons NEWELT LISTNAME)).
LISTNAME must be a symbol."
(list 'setq list
(list 'cons newelt list)))
(list 'setq listname
(list 'cons newelt listname)))
(defmacro pop (listname)
"Return the first element of LISTNAME's value, and remove it from the list.