]> code.delx.au - gnu-emacs/blobdiff - lispref/lists.texi
*** empty log message ***
[gnu-emacs] / lispref / lists.texi
index dbcddd741b35dab636467627124a6d11d798a68d..47ea5b7d541eaeb1e5b4fe29244528d53fe1d989 100644 (file)
@@ -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))