From: Kenichi Handa Date: Wed, 31 Jul 2002 07:11:28 +0000 (+0000) Subject: (setup_echo_area_for_printing, set_message_1): Adjusted X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~479 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=11e68d6cda4d1705d3dabaf90b2a50ae3e86a7aa;p=emacs.git (setup_echo_area_for_printing, set_message_1): Adjusted for the change of Fset_buffer_multibyte. --- 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;