changeset 60448:1f2f39d6b2e7

(List Elements, Building Lists): Get rid of "Emacs 21".
author Richard M. Stallman <rms@gnu.org>
date Sun, 06 Mar 2005 18:19:01 +0000
parents 881b9bd682ac
children 19e8fd4ab907
files lispref/lists.texi
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lispref/lists.texi	Sun Mar 06 18:17:08 2005 +0000
+++ b/lispref/lists.texi	Sun Mar 06 18:19:01 2005 +0000
@@ -248,7 +248,7 @@
 @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 @@
 @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))