From: Kenichi Handa Date: Mon, 7 Oct 2002 12:57:40 +0000 (+0000) Subject: (push_key_description): Pay attention to force_multibyte. X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~276 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c01bb36f11aa6f8038331f8154ef07f49e7a19b5;p=emacs.git (push_key_description): Pay attention to force_multibyte. --- diff --git a/src/keymap.c b/src/keymap.c index 594fccff967..68c63c6d08b 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -2026,7 +2026,8 @@ push_key_description (c, p, force_multibyte) } else if (CHARACTERP (make_number (c))) { - if (NILP (current_buffer->enable_multibyte_characters)) + if (NILP (current_buffer->enable_multibyte_characters) + && ! force_multibyte) *p++ = multibyte_char_to_unibyte (c, Qnil); else p += CHAR_STRING (c, (unsigned char *) p);