aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-03-06 18:19:01 +0000
committerRichard M. Stallman2005-03-06 18:19:01 +0000
commitaa9261ac7e8177a3bd35a57f1d0a058648bbda76 (patch)
tree44e431a4720057d6331444dac6cdbc2fddefea1f
parent35c14f98b193bc9dc2ed45d9724b021de792b7f9 (diff)
downloademacs-aa9261ac7e8177a3bd35a57f1d0a058648bbda76.tar.gz
emacs-aa9261ac7e8177a3bd35a57f1d0a058648bbda76.zip
(List Elements, Building Lists): Get rid of "Emacs 21".
-rw-r--r--lispref/lists.texi3
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
250This macro is a way of examining the @sc{car} of a list, 250This macro is a way of examining the @sc{car} of a list,
251and taking it off the list, all at once. It is new in Emacs 21. 251and taking it off the list, all at once.
252 252
253It operates on the list which is stored in the symbol @var{listname}. 253It operates on the list which is stored in the symbol @var{listname}.
254It removes this element from the list by setting @var{listname} 254It 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
437This macro provides an alternative way to write 437This 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}))}.
439It is new in Emacs 21.
440 439
441@example 440@example
442(setq l '(a b)) 441(setq l '(a b))