diff options
Diffstat (limited to 'kjs/lexer.cpp')
-rw-r--r-- | kjs/lexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kjs/lexer.cpp b/kjs/lexer.cpp index 054defb88..55a6d8fa5 100644 --- a/kjs/lexer.cpp +++ b/kjs/lexer.cpp @@ -604,7 +604,7 @@ bool Lexer::isIdentLetter(unsigned short c) // Uppercase letter (Lu), Lowercase letter (Ll), // Titlecase letter (Lt)", Modifier letter (Lm), // Other letter (Lo), or Letter number (Nl). - // Also see: http://www.unicode.org/Public/UNIDATA/UnicodeData.txt */ + // Also see: http://www.tqunicode.org/Public/UNIDATA/UnicodeData.txt */ return (c >= 'a' && c <= 'z' || c >= 'A' && c <= 'Z' || // A with grave - O with diaeresis |