fixed bug where 'v' was considered a whitespace character

This commit is contained in:
Pavol Marko 2004-09-17 18:32:00 +00:00
parent d0c51bd637
commit 895948ca45

View File

@ -187,7 +187,7 @@ public:
{
if (c == '\f' || c == '\n' ||
c == '\t' || c == '\r' ||
c == 'v' || c == ' ')
c == '\v' || c == ' ')
{
return true;
}