Oops earlier change biffed handling of ESC [ ?

This commit is contained in:
Jeff Epler 2024-10-11 08:23:24 -05:00
parent 599879e682
commit 4f40c5a469

View file

@ -179,7 +179,7 @@ void lw_terminal_parser_read(struct lw_terminal *this, char c)
{
if (c == '?')
this->flag = '?';
if (c == '>')
else if (c == '>')
this->flag = '>';
else if (c == ';' || (c >= '0' && c <= '9'))
lw_terminal_parser_push(this, c);