Mercurial > emacs
diff src/keymap.c @ 34765:bb3103d4e94d
(push_key_description): Don't convert eight-bit-control
and eight-bit-graphic to multibyte character.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Thu, 21 Dec 2000 01:58:28 +0000 |
| parents | 1e3d0f2d1145 |
| children | 333a490b6ebc |
line wrap: on
line diff
--- a/src/keymap.c Thu Dec 21 01:57:24 2000 +0000 +++ b/src/keymap.c Thu Dec 21 01:58:28 2000 +0000 @@ -1863,9 +1863,6 @@ *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))
