From: Kenichi Handa Date: Thu, 21 Dec 2000 01:58:28 +0000 (+0000) Subject: (push_key_description): Don't convert eight-bit-control X-Git-Tag: emacs-pretest-21.0.95~363 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=588fc8bdf03a873fdb53ce3db2b8e874990b3f77;p=emacs.git (push_key_description): Don't convert eight-bit-control and eight-bit-graphic to multibyte character. --- diff --git a/src/keymap.c b/src/keymap.c index e015bf92f5d..0c1a1146d15 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -1863,9 +1863,6 @@ push_key_description (c, p) *p++ = c; else { - if (! NILP (current_buffer->enable_multibyte_characters)) - c = unibyte_char_to_multibyte (c); - if (NILP (current_buffer->enable_multibyte_characters) || SINGLE_BYTE_CHAR_P (c) || ! char_valid_p (c, 0))