From a4e91443c2b48c56cf8b2d29a4feaa75b156e619 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 3 Mar 1998 07:18:46 +0000 Subject: [PATCH] (Fformat): Fix previous change. --- src/editfns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editfns.c b/src/editfns.c index 3fd3d91de3..9718c5aa15 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; -- 2.20.1