aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-08-06 01:41:53 +0000
committerRichard M. Stallman2003-08-06 01:41:53 +0000
commit2d9c250253da6a896f6d5203ba2124579f105b8d (patch)
tree47f08bdadc399f8b92458b041a0b9da402053047
parent1c7cdff5dde95314d6c38d53c31e0b192b861c62 (diff)
downloademacs-2d9c250253da6a896f6d5203ba2124579f105b8d.tar.gz
emacs-2d9c250253da6a896f6d5203ba2124579f105b8d.zip
(Vector Functions): vconcat no longer allows integer args.
-rw-r--r--lispref/sequences.texi13
1 files changed, 5 insertions, 8 deletions
diff --git a/lispref/sequences.texi b/lispref/sequences.texi
index 8e7ab4176e2..626de64e4a9 100644
--- a/lispref/sequences.texi
+++ b/lispref/sequences.texi
@@ -489,14 +489,11 @@ The @code{vconcat} function also allows byte-code function objects as
489arguments. This is a special feature to make it easy to access the entire 489arguments. This is a special feature to make it easy to access the entire
490contents of a byte-code function object. @xref{Byte-Code Objects}. 490contents of a byte-code function object. @xref{Byte-Code Objects}.
491 491
492The @code{vconcat} function also allows integers as arguments. It 492In Emacs versions before 21, the @code{vconcat} function allowed
493converts them to strings of digits, making up the decimal print 493integers as arguments, converting them to strings of digits, but that
494representation of the integer, and then uses the strings instead of the 494feature has been eliminated. The proper way to convert an integer to
495original integers. @strong{Don't use this feature; we plan to eliminate 495a decimal number in this way is with @code{format} (@pxref{Formatting
496it. If you already use this feature, change your programs now!} The 496Strings}) or @code{number-to-string} (@pxref{String Conversion}).
497proper way to convert an integer to a decimal number in this way is with
498@code{format} (@pxref{Formatting Strings}) or @code{number-to-string}
499(@pxref{String Conversion}).
500 497
501For other concatenation functions, see @code{mapconcat} in @ref{Mapping 498For other concatenation functions, see @code{mapconcat} in @ref{Mapping
502Functions}, @code{concat} in @ref{Creating Strings}, and @code{append} 499Functions}, @code{concat} in @ref{Creating Strings}, and @code{append}