Fix backspace option for new key format, GitHub issue 4284.

This commit is contained in:
nicm
2024-12-04 19:11:15 +00:00
parent 01edce40f3
commit 6d792e4123
2 changed files with 7 additions and 3 deletions

View File

@@ -894,6 +894,7 @@ first_key:
if (onlykey < 0x20 &&
onlykey != C0_HT &&
onlykey != C0_CR &&
onlykey != C0_BS &&
onlykey != C0_ESC) {
onlykey |= 0x40;
if (onlykey >= 'A' && onlykey <= 'Z')