]> git.eshelyaron.com Git - emacs.git/commitdiff
(Building Lists): Remove obsolete Emacs 20 usage of `append'.
authorChong Yidong <cyd@stupidchicken.com>
Sun, 22 Feb 2009 00:19:57 +0000 (00:19 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 22 Feb 2009 00:19:57 +0000 (00:19 +0000)
doc/lispref/lists.texi

index 626b633c3affd7bb80948fd2a88a955aea262073..fe83679bd4e2c579bfabdfbc7db9365848e1b512 100644 (file)
@@ -489,14 +489,6 @@ is itself a list, then its elements become in effect elements of the
 result list.  If the final element is not a list, the result is a
 dotted list since its final @sc{cdr} is not @code{nil} as required
 in a true list.
-
-In Emacs 20 and before, the @code{append} function also allowed
-integers as (non last) arguments.  It converted them to strings of
-digits, making up the decimal print representation of the integer, and
-then used the strings instead of the original integers.  This obsolete
-usage no longer works.  The proper way to convert an integer to a
-decimal number in this way is with @code{format} (@pxref{Formatting
-Strings}) or @code{number-to-string} (@pxref{String Conversion}).
 @end defun
 
   Here is an example of using @code{append}: