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:
parent
84841dd1b5
commit
741263c22b
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user