aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa1998-03-03 07:18:46 +0000
committerKenichi Handa1998-03-03 07:18:46 +0000
commita4e91443c2b48c56cf8b2d29a4feaa75b156e619 (patch)
treefeb5f9060dd54215bc82c294291cefd58bb0f166
parent290591c8fb6ac1e41686342d6a72619ba3c7c377 (diff)
downloademacs-a4e91443c2b48c56cf8b2d29a4feaa75b156e619.tar.gz
emacs-a4e91443c2b48c56cf8b2d29a4feaa75b156e619.zip
(Fformat): Fix previous change.
-rw-r--r--src/editfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 3fd3d91de33..9718c5aa153 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -2314,7 +2314,7 @@ Use %% to put a single % into the output.")
2314 /* Anything but a string, convert to a string using princ. */ 2314 /* Anything but a string, convert to a string using princ. */
2315 register Lisp_Object tem; 2315 register Lisp_Object tem;
2316 tem = Fprin1_to_string (args[n], Qt); 2316 tem = Fprin1_to_string (args[n], Qt);
2317 if (STRING_MULTIBYTE (tem)) 2317 if (STRING_MULTIBYTE (tem) & ! multibyte)
2318 { 2318 {
2319 multibyte = 1; 2319 multibyte = 1;
2320 goto retry; 2320 goto retry;