Oops earlier change biffed handling of ESC [ ?
This commit is contained in:
parent
599879e682
commit
4f40c5a469
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue