aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorChong Yidong <[email protected]>2009-02-22 00:19:57 +0000
committerChong Yidong <[email protected]>2009-02-22 00:19:57 +0000
commit01c36a8c65456177b388e70759b0e20f5e33ffc1 (patch)
treec9cfb15f682f8945f280560b4b4c4e9d5ff45f81 /doc
parent9403944b41c87e94ced7a27a9761a5963e5ea60a (diff)
(Building Lists): Remove obsolete Emacs 20 usage of `append'.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/lists.texi8
1 files changed, 0 insertions, 8 deletions
diff --git a/doc/lispref/lists.texi b/doc/lispref/lists.texi
index 626b633c3a..fe83679bd4 100644
--- a/doc/lispref/lists.texi
+++ b/doc/lispref/lists.texi
@@ -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}: