From 11e68d6cda4d1705d3dabaf90b2a50ae3e86a7aa Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Wed, 31 Jul 2002 07:11:28 +0000 Subject: [PATCH] (setup_echo_area_for_printing, set_message_1): Adjusted for the change of Fset_buffer_multibyte. --- src/xdisp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xdisp.c b/src/xdisp.c index d2e10985390..c68cfe014dd 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -6433,7 +6433,7 @@ setup_echo_area_for_printing (multibyte_p) /* Set up the buffer for the multibyteness we need. */ if (multibyte_p != !NILP (current_buffer->enable_multibyte_characters)) - Fset_buffer_multibyte (multibyte_p ? Qt : Qnil); + Fset_buffer_multibyte (multibyte_p ? Qt : Qnil, Qnil); /* Raise the frame containing the echo area. */ if (minibuffer_auto_raise) @@ -6911,7 +6911,7 @@ set_message_1 (a1, a2, nbytes, multibyte_p) /* Change multibyteness of the echo buffer appropriately. */ if (message_enable_multibyte != !NILP (current_buffer->enable_multibyte_characters)) - Fset_buffer_multibyte (message_enable_multibyte ? Qt : Qnil); + Fset_buffer_multibyte (message_enable_multibyte ? Qt : Qnil, Qnil); current_buffer->truncate_lines = message_truncate_lines ? Qt : Qnil; -- 2.39.5