diff options
| author | Richard M. Stallman | 2005-03-06 18:19:01 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-03-06 18:19:01 +0000 |
| commit | aa9261ac7e8177a3bd35a57f1d0a058648bbda76 (patch) | |
| tree | 44e431a4720057d6331444dac6cdbc2fddefea1f | |
| parent | 35c14f98b193bc9dc2ed45d9724b021de792b7f9 (diff) | |
| download | emacs-aa9261ac7e8177a3bd35a57f1d0a058648bbda76.tar.gz emacs-aa9261ac7e8177a3bd35a57f1d0a058648bbda76.zip | |
(List Elements, Building Lists): Get rid of "Emacs 21".
| -rw-r--r-- | lispref/lists.texi | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lispref/lists.texi b/lispref/lists.texi index dbcddd741b3..47ea5b7d541 100644 --- a/lispref/lists.texi +++ b/lispref/lists.texi | |||
| @@ -248,7 +248,7 @@ This is in contrast to @code{cdr}, which signals an error if | |||
| 248 | @tindex pop | 248 | @tindex pop |
| 249 | @defmac pop listname | 249 | @defmac pop listname |
| 250 | This macro is a way of examining the @sc{car} of a list, | 250 | This macro is a way of examining the @sc{car} of a list, |
| 251 | and taking it off the list, all at once. It is new in Emacs 21. | 251 | and taking it off the list, all at once. |
| 252 | 252 | ||
| 253 | It operates on the list which is stored in the symbol @var{listname}. | 253 | It operates on the list which is stored in the symbol @var{listname}. |
| 254 | It removes this element from the list by setting @var{listname} | 254 | It removes this element from the list by setting @var{listname} |
| @@ -436,7 +436,6 @@ any symbol can serve both purposes. | |||
| 436 | @defmac push newelt listname | 436 | @defmac push newelt listname |
| 437 | This macro provides an alternative way to write | 437 | This macro provides an alternative way to write |
| 438 | @code{(setq @var{listname} (cons @var{newelt} @var{listname}))}. | 438 | @code{(setq @var{listname} (cons @var{newelt} @var{listname}))}. |
| 439 | It is new in Emacs 21. | ||
| 440 | 439 | ||
| 441 | @example | 440 | @example |
| 442 | (setq l '(a b)) | 441 | (setq l '(a b)) |