# HG changeset patch # User Richard M. Stallman # Date 1110133141 0 # Node ID 1f2f39d6b2e7ceb9abaef917edb6c089bc672140 # Parent 881b9bd682ac5f10ecd2ba83e8c1be912aff8da4 (List Elements, Building Lists): Get rid of "Emacs 21". diff -r 881b9bd682ac -r 1f2f39d6b2e7 lispref/lists.texi --- 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))