diff options
| author | Dave Love | 1999-08-31 13:12:46 +0000 |
|---|---|---|
| committer | Dave Love | 1999-08-31 13:12:46 +0000 |
| commit | 22d85d00b0ad6fd4c54911df91c878715c182407 (patch) | |
| tree | b83a1115acf1e553d16e881844c2f47dc1c6d9b7 | |
| parent | b27c699564ae0510a626b742dc33181c8b8430ff (diff) | |
| download | emacs-22d85d00b0ad6fd4c54911df91c878715c182407.tar.gz emacs-22d85d00b0ad6fd4c54911df91c878715c182407.zip | |
(push): Fix typo.
| -rw-r--r-- | lisp/subr.el | 4 |
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." | |||
| 55 | "Add NEWELT to the list which is the value of LISTNAME. | 55 | "Add NEWELT to the list which is the value of 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 list | 58 | (list 'setq listname |
| 59 | (list 'cons newelt list))) | 59 | (list 'cons newelt listname))) |
| 60 | 60 | ||
| 61 | (defmacro pop (listname) | 61 | (defmacro pop (listname) |
| 62 | "Return the first element of LISTNAME's value, and remove it from the list. | 62 | "Return the first element of LISTNAME's value, and remove it from the list. |