mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 08:26:56 +00:00
...
This commit is contained in:
parent
468d0c69a6
commit
1f3afd95f3
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ static bool
|
|||
write_control_ch(Shlex *self) {
|
||||
if (self->src_pos >= self->src_sz) { PyErr_SetString(PyExc_ValueError, "Trailing \\c escape at end of input data"); return false; }
|
||||
Py_UCS4 ch = read_ch(self);
|
||||
write_ch(self, ch & 31);
|
||||
write_ch(self, ch & 0x1f);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue