Merge pull request #6190 from andersk/bel
filterANSIEscapes: Ignore BEL character
This commit is contained in:
commit
3c66839b9d
|
@ -1412,7 +1412,7 @@ std::string filterANSIEscapes(const std::string & s, bool filterAll, unsigned in
|
|||
}
|
||||
}
|
||||
|
||||
else if (*i == '\r')
|
||||
else if (*i == '\r' || *i == '\a')
|
||||
// do nothing for now
|
||||
i++;
|
||||
|
||||
|
|
Loading…
Reference in a new issue