1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-22 18:35:09 +00:00

(internal_self_insert): If C has modifier bits, insert

appropriate one byte char.
This commit is contained in:
Kenichi Handa 1998-11-26 08:12:12 +00:00
parent 84841dd1b5
commit 741263c22b

View File

@ -354,6 +354,10 @@ internal_self_insert (c, noautofill)
{
c = unibyte_char_to_multibyte (c);
len = CHAR_STRING (c, workbuf, str);
if (len == 1)
/* If C has modifier bits, this makes C an appropriate
one-byte char. */
c = *str;
}
else
{