]> git.eshelyaron.com Git - emacs.git/commitdiff
(setup_echo_area_for_printing, set_message_1): Adjusted
authorKenichi Handa <handa@m17n.org>
Wed, 31 Jul 2002 07:11:28 +0000 (07:11 +0000)
committerKenichi Handa <handa@m17n.org>
Wed, 31 Jul 2002 07:11:28 +0000 (07:11 +0000)
for the change of Fset_buffer_multibyte.

src/xdisp.c

index d2e1098539027220491fb2fc721b75ad541c6372..c68cfe014dd1a55a2905c97028967d729f560273 100644 (file)
@@ -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;