From a10f6c69acc8ff6f268352293a4cf3cd0f4e4563 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 28 Mar 1995 05:44:53 +0000 Subject: [PATCH] Say not to use concat for integers. --- lispref/strings.texi | 10 +++++----- 1 file 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. 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 -- 2.39.5