vt: add missing transition from state ESCAPE -> CSI DISPATCH

This commit is contained in:
Daniel Eklöf 2019-06-22 22:26:57 +02:00
parent 6aba78a145
commit 308bcb0233
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

1
vt.c
View file

@ -89,6 +89,7 @@ static const struct state_transition state_ground[256] = {
};
static const struct state_transition state_escape[256] = {
[0x30 ... 0x4f] = {.action = ACTION_CSIDISPATCH, .state = STATE_GROUND},
[0x5b] = {.state = STATE_CSIENTRY},
[0x5d] = {.state = STATE_OSCSTRING},
};