Do not translate BSpace as Unicode, GitHub issue 4156.

This commit is contained in:
nicm 2024-10-04 14:55:17 +00:00 committed by Nicholas Marriott
parent 356887bca2
commit 048db82041

View File

@ -983,7 +983,7 @@ tty_keys_extended_key(struct tty *tty, const char *buf, size_t len,
nkey = number;
/* Convert UTF-32 codepoint into internal representation. */
if (nkey & ~0x7f) {
if (nkey != KEYC_BSPACE && nkey & ~0x7f) {
if (utf8_fromwc(nkey, &ud) == UTF8_DONE &&
utf8_from_data(&ud, &uc) == UTF8_DONE)
nkey = uc;