]> git.eshelyaron.com Git - emacs.git/commitdiff
(push_key_description): Don't convert eight-bit-control
authorKenichi Handa <handa@m17n.org>
Thu, 21 Dec 2000 01:58:28 +0000 (01:58 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 21 Dec 2000 01:58:28 +0000 (01:58 +0000)
and eight-bit-graphic to multibyte character.

src/keymap.c

index e015bf92f5db13d4c85b8796796c3ef2e56b891e..0c1a1146d15f5f97d8f396a04d78cde0c237f1ef 100644 (file)
@@ -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))