From 22d85d00b0ad6fd4c54911df91c878715c182407 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Tue, 31 Aug 1999 13:12:46 +0000 Subject: [PATCH] (push): Fix typo. --- lisp/subr.el | 4 ++-- 1 file 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. -- 2.39.5