aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2002-07-31 07:11:28 +0000
committerKenichi Handa2002-07-31 07:11:28 +0000
commit11e68d6cda4d1705d3dabaf90b2a50ae3e86a7aa (patch)
tree2e63d7504ff5fc16017f164b03e88faa5486e1ef /src
parent40be5efd7f2c00be1a9655e93788f90cd7472ab7 (diff)
downloademacs-11e68d6cda4d1705d3dabaf90b2a50ae3e86a7aa.tar.gz
emacs-11e68d6cda4d1705d3dabaf90b2a50ae3e86a7aa.zip
(setup_echo_area_for_printing, set_message_1): Adjusted
for the change of Fset_buffer_multibyte.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c4
1 files 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)
6433 /* Set up the buffer for the multibyteness we need. */ 6433 /* Set up the buffer for the multibyteness we need. */
6434 if (multibyte_p 6434 if (multibyte_p
6435 != !NILP (current_buffer->enable_multibyte_characters)) 6435 != !NILP (current_buffer->enable_multibyte_characters))
6436 Fset_buffer_multibyte (multibyte_p ? Qt : Qnil); 6436 Fset_buffer_multibyte (multibyte_p ? Qt : Qnil, Qnil);
6437 6437
6438 /* Raise the frame containing the echo area. */ 6438 /* Raise the frame containing the echo area. */
6439 if (minibuffer_auto_raise) 6439 if (minibuffer_auto_raise)
@@ -6911,7 +6911,7 @@ set_message_1 (a1, a2, nbytes, multibyte_p)
6911 /* Change multibyteness of the echo buffer appropriately. */ 6911 /* Change multibyteness of the echo buffer appropriately. */
6912 if (message_enable_multibyte 6912 if (message_enable_multibyte
6913 != !NILP (current_buffer->enable_multibyte_characters)) 6913 != !NILP (current_buffer->enable_multibyte_characters))
6914 Fset_buffer_multibyte (message_enable_multibyte ? Qt : Qnil); 6914 Fset_buffer_multibyte (message_enable_multibyte ? Qt : Qnil, Qnil);
6915 6915
6916 current_buffer->truncate_lines = message_truncate_lines ? Qt : Qnil; 6916 current_buffer->truncate_lines = message_truncate_lines ? Qt : Qnil;
6917 6917