Closed mawww closed 4 years ago
the following gets parsed incorrectly: CSI ;4;38;2;184;187;38;48;2;62;62;62 m and leads to the following output:
CSI ;4;38;2;184;187;38;48;2;62;62;62 m
[warning] Unknown SGR code: 38 [warning] Unknown SGR code: 235 [warning] Unknown SGR code: 219 [warning] Unknown SGR code: 178
This is due to vt.c line 2078 that decides to parse 38 with Vt_handle_SGR_code because args[0] is ;4.
Vt_handle_SGR_code
;4
the following gets parsed incorrectly:
CSI ;4;38;2;184;187;38;48;2;62;62;62 m
and leads to the following output:This is due to vt.c line 2078 that decides to parse 38 with
Vt_handle_SGR_code
because args[0] is;4
.