unicode: Renamed unicodeAlpha to unicodeLatinAlpha

This commit is contained in:
Paul Beckingham 2016-01-14 21:53:54 -05:00
parent 26e69225b4
commit 8db7077e12
4 changed files with 10 additions and 10 deletions

View file

@ -241,7 +241,7 @@ bool Lexer::isBoundary (int left, int right)
if (right == '\0') return true;
// XOR
if (unicodeAlpha (left) != unicodeAlpha (right)) return true;
if (unicodeLatinAlpha (left) != unicodeLatinAlpha (right)) return true;
if (isDigit (left) != isDigit (right)) return true;
if (unicodeWhitespace (left) != unicodeWhitespace (right)) return true;
@ -278,7 +278,7 @@ bool Lexer::isPunctuation (int c)
c != '$' &&
c != '_' &&
! isDigit (c) &&
! unicodeAlpha (c);
! unicodeLatinAlpha (c);
}
////////////////////////////////////////////////////////////////////////////////