Merge pull request #6190 from andersk/bel

filterANSIEscapes: Ignore BEL character
This commit is contained in:
Eelco Dolstra 2022-03-02 08:46:19 +01:00 committed by GitHub
commit 3c66839b9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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++;