diff options
Diffstat (limited to 'driver-csi.c')
-rw-r--r-- | driver-csi.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/driver-csi.c b/driver-csi.c index bb699bd..b116924 100644 --- a/driver-csi.c +++ b/driver-csi.c @@ -255,6 +255,10 @@ static TermKeyResult parse_csi(TermKey *tk, size_t introlen, size_t *csi_len, lo if(argi > 16) break; } + else if(c >= 0x20 && c <= 0x2f) { + *commandp |= c << 16; + break; + } p++; } |