fixed bug where 'v' was considered a whitespace character
This commit is contained in:
parent
d0c51bd637
commit
895948ca45
|
@ -187,7 +187,7 @@ public:
|
||||||
{
|
{
|
||||||
if (c == '\f' || c == '\n' ||
|
if (c == '\f' || c == '\n' ||
|
||||||
c == '\t' || c == '\r' ||
|
c == '\t' || c == '\r' ||
|
||||||
c == 'v' || c == ' ')
|
c == '\v' || c == ' ')
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user