diff options
| author | Richard M. Stallman | 1999-09-07 06:37:06 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1999-09-07 06:37:06 +0000 |
| commit | fa65505b4d8489ac5fde80737bde839a5acaef4d (patch) | |
| tree | a606d88585d6c19d26ee34823a628c0e2c70a425 | |
| parent | 7baf49cf5e936ccbc63dd1ebcd223f27cf6aae41 (diff) | |
| download | emacs-fa65505b4d8489ac5fde80737bde839a5acaef4d.tar.gz emacs-fa65505b4d8489ac5fde80737bde839a5acaef4d.zip | |
(push): Doc fix.
| -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 |