1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-30 08:09:04 +00:00

Say not to use concat for integers.

This commit is contained in:
Richard M. Stallman 1995-03-28 05:44:53 +00:00
parent 82072f33f9
commit a10f6c69ac

View File

@ -218,11 +218,11 @@ not @code{eq} to any existing string.
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
@code{format} (@pxref{Formatting Strings}) or @code{number-to-string}
(@pxref{String Conversion}).
representation of the integer. @string{Don't use this feature---it
exists for historical compatibility only, and we plan to change it by
and by.} If you wish to convert an integer to a decimal number in this
way, use @code{format} (@pxref{Formatting Strings}) or
@code{number-to-string} (@pxref{String Conversion}).
@example
@group