Mercurial > emacs
changeset 16097:d4fd600475dc
(Fformat): Pass a string using XSTRING.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 03 Sep 1996 23:23:53 +0000 |
parents | aa25c2ac018b |
children | b463288de0a8 |
files | src/editfns.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/editfns.c Tue Sep 03 23:23:40 1996 +0000 +++ b/src/editfns.c Tue Sep 03 23:23:53 1996 +0000 @@ -2047,7 +2047,7 @@ 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. */