diff options
| author | Richard M. Stallman | 1995-03-28 05:44:53 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-03-28 05:44:53 +0000 |
| commit | a10f6c69acc8ff6f268352293a4cf3cd0f4e4563 (patch) | |
| tree | b6465281148946e13f68f2200399af21aee08067 /lispref | |
| parent | 82072f33f9384ddfd12a21004fff8820f063d700 (diff) | |
| download | emacs-a10f6c69acc8ff6f268352293a4cf3cd0f4e4563.tar.gz emacs-a10f6c69acc8ff6f268352293a4cf3cd0f4e4563.zip | |
Say not to use concat for integers.
Diffstat (limited to 'lispref')
| -rw-r--r-- | lispref/strings.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lispref/strings.texi b/lispref/strings.texi index cbe4034ce48..1ca59d81f69 100644 --- a/lispref/strings.texi +++ b/lispref/strings.texi | |||
| @@ -218,11 +218,11 @@ not @code{eq} to any existing string. | |||
| 218 | 218 | ||
| 219 | When an argument is an integer (not a sequence of integers), it is | 219 | When an argument is an integer (not a sequence of integers), it is |
| 220 | converted to a string of digits making up the decimal printed | 220 | converted to a string of digits making up the decimal printed |
| 221 | representation of the integer. This special case exists for | 221 | representation of the integer. @string{Don't use this feature---it |
| 222 | compatibility with Mocklisp, and we don't recommend you take advantage | 222 | exists for historical compatibility only, and we plan to change it by |
| 223 | of it. If you want to convert an integer to digits in this way, use | 223 | and by.} If you wish to convert an integer to a decimal number in this |
| 224 | @code{format} (@pxref{Formatting Strings}) or @code{number-to-string} | 224 | way, use @code{format} (@pxref{Formatting Strings}) or |
| 225 | (@pxref{String Conversion}). | 225 | @code{number-to-string} (@pxref{String Conversion}). |
| 226 | 226 | ||
| 227 | @example | 227 | @example |
| 228 | @group | 228 | @group |