# HG changeset patch # User Kenichi Handa # Date 1028099488 0 # Node ID f74c5b0985f18e79925fda48f8b22fd0ce291efe # Parent 451e5c5b3856fa63e772a8757f6f619625d09e2b (setup_echo_area_for_printing, set_message_1): Adjusted for the change of Fset_buffer_multibyte. diff -r 451e5c5b3856 -r f74c5b0985f1 src/xdisp.c --- a/src/xdisp.c Wed Jul 31 07:10:36 2002 +0000 +++ b/src/xdisp.c Wed Jul 31 07:11:28 2002 +0000 @@ -6433,7 +6433,7 @@ /* 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 @@ /* 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;