From: Kenichi Handa Date: Tue, 3 Mar 1998 07:18:46 +0000 (+0000) Subject: (Fformat): Fix previous change. X-Git-Tag: emacs-20.3~2022 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a4e91443c2b48c56cf8b2d29a4feaa75b156e619;p=emacs.git (Fformat): Fix previous change. --- 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.") /* Anything but a string, convert to a string using princ. */ register Lisp_Object tem; tem = Fprin1_to_string (args[n], Qt); - if (STRING_MULTIBYTE (tem)) + if (STRING_MULTIBYTE (tem) & ! multibyte) { multibyte = 1; goto retry;