This commit is contained in:
Eelco Dolstra
2017-08-25 15:59:03 +02:00
parent 0e9ddcc306
commit a3015db6c3
+1 -1
View File
@@ -1171,7 +1171,7 @@ string filterANSIEscapes(const string & s, bool nixOnly)
}
} else {
r += c;
if (c >= 0x40 && c != 0x7e) {
if (c >= 0x40 && c <= 0x7e) {
if (nixOnly && (c != 'p' && c != 'q' && c != 's' && c != 'a' && c != 'b'))
t += r;
state = stTop;