aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1996-09-03 23:23:53 +0000
committerRichard M. Stallman1996-09-03 23:23:53 +0000
commitaa8fe325129b4425fe6b2682e5376bf5ab9e2b43 (patch)
treef3da839c4bb2f414a9d62b0f28282839822c29f3 /src
parent857c4c675fd1ed88c0ae87218c4d4431d640c973 (diff)
downloademacs-aa8fe325129b4425fe6b2682e5376bf5ab9e2b43.tar.gz
emacs-aa8fe325129b4425fe6b2682e5376bf5ab9e2b43.zip
(Fformat): Pass a string using XSTRING.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c2
1 files changed, 1 insertions, 1 deletions
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.")
2047 because it is the format string. */ 2047 because it is the format string. */
2048 strings[i++] = XSTRING (args[n])->data; 2048 strings[i++] = XSTRING (args[n])->data;
2049 else 2049 else
2050 strings[i++] = (unsigned char *) XFASTINT (args[n]); 2050 strings[i++] = (unsigned char *) XSTRING (args[n]);
2051 } 2051 }
2052 2052
2053 /* Make room in result for all the non-%-codes in the control string. */ 2053 /* Make room in result for all the non-%-codes in the control string. */