diff options
| author | Kenichi Handa | 2000-12-21 01:58:28 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2000-12-21 01:58:28 +0000 |
| commit | 588fc8bdf03a873fdb53ce3db2b8e874990b3f77 (patch) | |
| tree | a1338f271248f3721f894a432767edc16e999e98 /src/keymap.c | |
| parent | e360ac5bee4b090f94e54363e514d58705d49f1a (diff) | |
| download | emacs-588fc8bdf03a873fdb53ce3db2b8e874990b3f77.tar.gz emacs-588fc8bdf03a873fdb53ce3db2b8e874990b3f77.zip | |
(push_key_description): Don't convert eight-bit-control
and eight-bit-graphic to multibyte character.
Diffstat (limited to 'src/keymap.c')
| -rw-r--r-- | src/keymap.c | 3 |
1 files changed, 0 insertions, 3 deletions
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) | |||
| 1863 | *p++ = c; | 1863 | *p++ = c; |
| 1864 | else | 1864 | else |
| 1865 | { | 1865 | { |
| 1866 | if (! NILP (current_buffer->enable_multibyte_characters)) | ||
| 1867 | c = unibyte_char_to_multibyte (c); | ||
| 1868 | |||
| 1869 | if (NILP (current_buffer->enable_multibyte_characters) | 1866 | if (NILP (current_buffer->enable_multibyte_characters) |
| 1870 | || SINGLE_BYTE_CHAR_P (c) | 1867 | || SINGLE_BYTE_CHAR_P (c) |
| 1871 | || ! char_valid_p (c, 0)) | 1868 | || ! char_valid_p (c, 0)) |