From aa8fe325129b4425fe6b2682e5376bf5ab9e2b43 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 3 Sep 1996 23:23:53 +0000 Subject: [PATCH] (Fformat): Pass a string using XSTRING. --- src/editfns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */ -- 2.39.2