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:
parent
b27c699564
commit
22d85d00b0
1 changed files with 2 additions and 2 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue