mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-20 05:33:47 -04:00
vt: add missing transition from state ESCAPE -> CSI DISPATCH
This commit is contained in:
parent
6aba78a145
commit
308bcb0233
1 changed files with 1 additions and 0 deletions
1
vt.c
1
vt.c
|
|
@ -89,6 +89,7 @@ static const struct state_transition state_ground[256] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct state_transition state_escape[256] = {
|
static const struct state_transition state_escape[256] = {
|
||||||
|
[0x30 ... 0x4f] = {.action = ACTION_CSIDISPATCH, .state = STATE_GROUND},
|
||||||
[0x5b] = {.state = STATE_CSIENTRY},
|
[0x5b] = {.state = STATE_CSIENTRY},
|
||||||
[0x5d] = {.state = STATE_OSCSTRING},
|
[0x5d] = {.state = STATE_OSCSTRING},
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue