From d69864bf3ee0b990101fee34f3dc857cf3f13ea4 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Thu, 7 Sep 2000 01:14:20 +0000 Subject: [PATCH] (read_process_output): Before inserting the decoded text in the buffer, adjust the multibyteness. --- src/process.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/process.c b/src/process.c index 35fca18ff2..49dcaea467 100644 --- a/src/process.c +++ b/src/process.c @@ -3075,6 +3075,12 @@ read_process_output (proc, channel) bcopy (chars + coding->consumed, XSTRING (p->decoding_buf)->data, carryover); XSETINT (p->decoding_carryover, carryover); + /* Adjust the multibyteness of TEXT to that of the buffer. */ + if (NILP (current_buffer->enable_multibyte_characters) + != ! STRING_MULTIBYTE (text)) + text = (STRING_MULTIBYTE (text) + ? Fstring_as_unibyte (text) + : Fstring_as_multibyte (text)); nbytes = STRING_BYTES (XSTRING (text)); nchars = XSTRING (text)->size; insert_from_string_before_markers (text, 0, 0, nchars, nbytes, 0); -- 2.20.1