From: Karl Heuer Date: Sat, 20 Jun 1998 21:49:01 +0000 (+0000) Subject: (strout): Show multibyte message correctly. X-Git-Tag: emacs-20.3~551 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=799fdb040b4d006cfefd0a4d288f4dc89c436447;p=emacs.git (strout): Show multibyte message correctly. --- diff --git a/src/print.c b/src/print.c index 80959d0ad86..e60cdfb2fff 100644 --- a/src/print.c +++ b/src/print.c @@ -519,9 +519,11 @@ strout (ptr, size, size_byte, printcharfun, multibyte) } bcopy (tembuf, FRAME_MESSAGE_BUF (mini_frame), printbufidx); - message_enable_multibyte = 1; } + if (multibyte) + message_enable_multibyte = 1; + /* Compute how much of the new text will fit there. */ if (size_byte > FRAME_MESSAGE_BUF_SIZE (mini_frame) - printbufidx - 1) {