1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-08 04:30:45 -08:00

(push_key_description): Don't convert eight-bit-control

and eight-bit-graphic to multibyte character.
This commit is contained in:
Kenichi Handa 2000-12-21 01:58:28 +00:00
parent e360ac5bee
commit 588fc8bdf0

View 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))