aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1998-06-20 21:49:01 +0000
committerKarl Heuer <[email protected]>1998-06-20 21:49:01 +0000
commit799fdb040b4d006cfefd0a4d288f4dc89c436447 (patch)
tree52aa175d79b34ac95c61828b907d489a7ce418aa /src
parent348e3a084155fe949559245be99df9fe6f8184a2 (diff)
(strout): Show multibyte message correctly.
Diffstat (limited to 'src')
-rw-r--r--src/print.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c
index 80959d0ad8..e60cdfb2ff 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)
{