Mercurial > emacs
changeset 22528:917ec8bf0d89
(strout): Show multibyte message correctly.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Sat, 20 Jun 1998 21:49:01 +0000 |
parents | 1b3491492aae |
children | d9eac134a41b |
files | src/print.c |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/print.c Sat Jun 20 21:44:21 1998 +0000 +++ b/src/print.c Sat Jun 20 21:49:01 1998 +0000 @@ -519,9 +519,11 @@ } 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) {