changeset 25469:6762c8a75fd7

(push): Fix typo.
author Dave Love <fx@gnu.org>
date Tue, 31 Aug 1999 13:12:46 +0000
parents 637af9b4fdbb
children 06fcafae7d56
files lisp/subr.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/subr.el	Mon Aug 30 23:58:18 1999 +0000
+++ b/lisp/subr.el	Tue Aug 31 13:12:46 1999 +0000
@@ -55,8 +55,8 @@
   "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.