Keyboard input: Fix text not being reported as unicode codepoints for multi-byte characters in the kitty keyboard protocol

Fixes #6167
This commit is contained in:
Kovid Goyal 2023-04-09 22:57:40 +05:30
parent 6aa2a7f99d
commit d4c5b8c899
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 1 deletions

View File

@ -92,6 +92,8 @@ Detailed list of changes
- Linux Wayland: Fix animated images not being animated continuously (:iss:`6126`) - Linux Wayland: Fix animated images not being animated continuously (:iss:`6126`)
- Keyboard input: Fix text not being reported as unicode codepoints for multi-byte characters in the kitty keyboard protocol (:iss:`6167`)
0.27.1 [2023-02-07] 0.27.1 [2023-02-07]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

View File

@ -88,7 +88,6 @@ serialize(const EncodingData *data, char *output, const char csi_trailer) {
if (first) { P(";%u", codep); first = false; } if (first) { P(";%u", codep); first = false; }
else P(":%u", codep); else P(":%u", codep);
} }
state = UTF8_ACCEPT;
p++; p++;
} }
} }