diff options
| -rw-r--r-- | lisp/subr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 0d781e0082e..7f145861ab3 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -52,7 +52,7 @@ BODY should be a list of lisp expressions." | |||
| 52 | (list 'function (cons 'lambda cdr))) | 52 | (list 'function (cons 'lambda cdr))) |
| 53 | 53 | ||
| 54 | (defmacro push (newelt listname) | 54 | (defmacro push (newelt listname) |
| 55 | "Add NEWELT to the list which is the value of LISTNAME. | 55 | "Add NEWELT to the list stored in the symbol LISTNAME. |
| 56 | This is equivalent to (setq LISTNAME (cons NEWELT LISTNAME)). | 56 | This is equivalent to (setq LISTNAME (cons NEWELT LISTNAME)). |
| 57 | LISTNAME must be a symbol." | 57 | LISTNAME must be a symbol." |
| 58 | (list 'setq listname | 58 | (list 'setq listname |