Update pending mode escape code parsing to match latest shed color

This commit is contained in:
Kovid Goyal
2018-07-28 10:56:34 +05:30
parent bd4831e2ee
commit 3df78de3f8
3 changed files with 44 additions and 36 deletions

View File

@@ -98,10 +98,11 @@ typedef struct {
CursorRenderInfo cursor_render_info;
struct {
size_t capacity, used;
size_t capacity, used, stop_buf_pos;
uint8_t *buf;
double activated_at, wait_time;
int state;
uint8_t stop_buf[32];
} pending_mode;
} Screen;