From: Richard M. Stallman Date: Tue, 3 Sep 1996 23:23:53 +0000 (+0000) Subject: (Fformat): Pass a string using XSTRING. X-Git-Tag: emacs-20.1~3847 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=aa8fe325129b4425fe6b2682e5376bf5ab9e2b43;p=emacs.git (Fformat): Pass a string using XSTRING. --- diff --git a/src/editfns.c b/src/editfns.c index dfe80b3c4bf..42db5e02cb3 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -2047,7 +2047,7 @@ Use %% to put a single % into the output.") because it is the format string. */ strings[i++] = XSTRING (args[n])->data; else - strings[i++] = (unsigned char *) XFASTINT (args[n]); + strings[i++] = (unsigned char *) XSTRING (args[n]); } /* Make room in result for all the non-%-codes in the control string. */