usp10: Correct an error with the Telugu lexical function.

This commit is contained in:
Aric Stewart 2011-06-15 09:53:45 -05:00 committed by Alexandre Julliard
parent be5f35534b
commit 88ad318fb8
1 changed files with 1 additions and 1 deletions

View File

@ -2631,7 +2631,7 @@ static int telugu_lex(WCHAR c)
case 0x200C: return lex_ZWNJ;
case 0x200D: return lex_ZWJ;
default:
if (c>=0x0C01 && c<=0x0C03) return lex_Matra_post;
if (c>=0x0C01 && c<=0x0C03) return lex_Modifier;
else if (c>=0x0C05 && c<=0x0C14) return lex_Vowel;
else if (c>=0x0C15 && c<=0x0C39) return lex_Consonant;
else if (c>=0x0C3E && c<=0x0C40) return lex_Matra_above;