summaryrefslogtreecommitdiff
path: root/lispref/lists.texi
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2005-03-06 18:19:01 +0000
committerRichard M. Stallman <rms@gnu.org>2005-03-06 18:19:01 +0000
commitaa9261ac7e8177a3bd35a57f1d0a058648bbda76 (patch)
tree44e431a4720057d6331444dac6cdbc2fddefea1f /lispref/lists.texi
parent35c14f98b193bc9dc2ed45d9724b021de792b7f9 (diff)
(List Elements, Building Lists): Get rid of "Emacs 21".
Diffstat (limited to 'lispref/lists.texi')
-rw-r--r--lispref/lists.texi3
1 files changed, 1 insertions, 2 deletions
diff --git a/lispref/lists.texi b/lispref/lists.texi
index dbcddd741b..47ea5b7d54 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
@tindex pop
@defmac pop listname
This macro is a way of examining the @sc{car} of a list,
-and taking it off the list, all at once. It is new in Emacs 21.
+and taking it off the list, all at once.
It operates on the list which is stored in the symbol @var{listname}.
It removes this element from the list by setting @var{listname}
@@ -436,7 +436,6 @@ any symbol can serve both purposes.
@defmac push newelt listname
This macro provides an alternative way to write
@code{(setq @var{listname} (cons @var{newelt} @var{listname}))}.
-It is new in Emacs 21.
@example
(setq l '(a b))