Module: wine Branch: master Commit: 88ad318fb80b0fd01792fd4376ae6050acd1a852 URL: http://source.winehq.org/git/wine.git/?a=commit;h=88ad318fb80b0fd01792fd4376...
Author: Aric Stewart aric@codeweavers.com Date: Wed Jun 15 09:53:45 2011 -0500
usp10: Correct an error with the Telugu lexical function.
---
dlls/usp10/shape.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/usp10/shape.c b/dlls/usp10/shape.c index 63a9a2f..1da371f 100644 --- a/dlls/usp10/shape.c +++ b/dlls/usp10/shape.c @@ -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;