diff options
| author | Richard M. Stallman | 2003-08-06 01:41:53 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-08-06 01:41:53 +0000 |
| commit | 2d9c250253da6a896f6d5203ba2124579f105b8d (patch) | |
| tree | 47f08bdadc399f8b92458b041a0b9da402053047 | |
| parent | 1c7cdff5dde95314d6c38d53c31e0b192b861c62 (diff) | |
| download | emacs-2d9c250253da6a896f6d5203ba2124579f105b8d.tar.gz emacs-2d9c250253da6a896f6d5203ba2124579f105b8d.zip | |
(Vector Functions): vconcat no longer allows integer args.
| -rw-r--r-- | lispref/sequences.texi | 13 |
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 | |||
| 489 | arguments. This is a special feature to make it easy to access the entire | 489 | arguments. This is a special feature to make it easy to access the entire |
| 490 | contents of a byte-code function object. @xref{Byte-Code Objects}. | 490 | contents of a byte-code function object. @xref{Byte-Code Objects}. |
| 491 | 491 | ||
| 492 | The @code{vconcat} function also allows integers as arguments. It | 492 | In Emacs versions before 21, the @code{vconcat} function allowed |
| 493 | converts them to strings of digits, making up the decimal print | 493 | integers as arguments, converting them to strings of digits, but that |
| 494 | representation of the integer, and then uses the strings instead of the | 494 | feature has been eliminated. The proper way to convert an integer to |
| 495 | original integers. @strong{Don't use this feature; we plan to eliminate | 495 | a decimal number in this way is with @code{format} (@pxref{Formatting |
| 496 | it. If you already use this feature, change your programs now!} The | 496 | Strings}) or @code{number-to-string} (@pxref{String Conversion}). |
| 497 | proper 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 | ||
| 501 | For other concatenation functions, see @code{mapconcat} in @ref{Mapping | 498 | For other concatenation functions, see @code{mapconcat} in @ref{Mapping |
| 502 | Functions}, @code{concat} in @ref{Creating Strings}, and @code{append} | 499 | Functions}, @code{concat} in @ref{Creating Strings}, and @code{append} |