forked from lix-project/lix
Typo
This commit is contained in:
parent
0e9ddcc306
commit
a3015db6c3
|
@ -1171,7 +1171,7 @@ string filterANSIEscapes(const string & s, bool nixOnly)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
r += c;
|
r += c;
|
||||||
if (c >= 0x40 && c != 0x7e) {
|
if (c >= 0x40 && c <= 0x7e) {
|
||||||
if (nixOnly && (c != 'p' && c != 'q' && c != 's' && c != 'a' && c != 'b'))
|
if (nixOnly && (c != 'p' && c != 'q' && c != 's' && c != 'a' && c != 'b'))
|
||||||
t += r;
|
t += r;
|
||||||
state = stTop;
|
state = stTop;
|
||||||
|
|
Loading…
Reference in a new issue