diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-06-05 12:23:13 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-06-05 12:23:13 +0000 |
commit | 22697dac66806b67eca956ad8cf8907b16d750b4 (patch) | |
tree | 57a28d25543669c66512a7fd1977eea4973115c4 /lispref/sequences.texi | |
parent | a8a818c00e9cc73259aa3c519ba5fc34741c11ab (diff) | |
download | emacs-22697dac66806b67eca956ad8cf8907b16d750b4.tar.gz |
*** empty log message ***
Diffstat (limited to 'lispref/sequences.texi')
-rw-r--r-- | lispref/sequences.texi | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lispref/sequences.texi b/lispref/sequences.texi index c1e7f3dc2d0..0982b19c743 100644 --- a/lispref/sequences.texi +++ b/lispref/sequences.texi @@ -462,11 +462,12 @@ existing vector. @end group @end example -When an argument is an integer (not a sequence of integers), it is -converted to a string of digits making up the decimal printed -representation of the integer. This special case exists for -compatibility with Mocklisp, and we don't recommend you take advantage -of it. If you want to convert an integer to digits in this way, use +The @code{vconcat} function also allows integers as arguments. It +converts them to strings of digits, making up the decimal print +representation of the integer, and then uses the strings instead of the +original integers. @strong{Don't use this feature; we plan to eliminate +it. If you already use this feature, change your programs now!} 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}). |