summaryrefslogtreecommitdiff
path: root/lisp/subr.el
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>1999-08-31 13:12:46 +0000
committerDave Love <fx@gnu.org>1999-08-31 13:12:46 +0000
commit22d85d00b0ad6fd4c54911df91c878715c182407 (patch)
treeb83a1115acf1e553d16e881844c2f47dc1c6d9b7 /lisp/subr.el
parentb27c699564ae0510a626b742dc33181c8b8430ff (diff)
downloademacs-22d85d00b0ad6fd4c54911df91c878715c182407.tar.gz
(push): Fix typo.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r--lisp/subr.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 5d94a2aa9ad..0d781e0082e 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -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.