From: Richard M. Stallman Date: Sun, 6 Mar 2005 18:19:01 +0000 (+0000) Subject: (List Elements, Building Lists): Get rid of "Emacs 21". X-Git-Tag: ttn-vms-21-2-B4~1942 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=aa9261ac7e8177a3bd35a57f1d0a058648bbda76;p=emacs.git (List Elements, Building Lists): Get rid of "Emacs 21". --- 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 @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))