Mercurial > emacs
changeset 88952:f74c5b0985f1
(setup_echo_area_for_printing, set_message_1): Adjusted
for the change of Fset_buffer_multibyte.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 31 Jul 2002 07:11:28 +0000 |
parents | 451e5c5b3856 |
children | b18e038d980f |
files | src/xdisp.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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;