Aric Stewart : usp10: More corrections to the Telugu lexical function.

Alexandre Julliard julliard at winehq.org
Thu Jun 16 14:28:50 CDT 2011


Module: wine
Branch: master
Commit: 2a8e004bcf0fc60f11cadc12f6a161d432389f6c
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=2a8e004bcf0fc60f11cadc12f6a161d432389f6c

Author: Aric Stewart <aric at codeweavers.com>
Date:   Thu Jun 16 11:28:31 2011 -0500

usp10: More corrections to the Telugu lexical function.

---

 dlls/usp10/shape.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dlls/usp10/shape.c b/dlls/usp10/shape.c
index 1da371f..c8f11db 100644
--- a/dlls/usp10/shape.c
+++ b/dlls/usp10/shape.c
@@ -2635,12 +2635,13 @@ static int telugu_lex(WCHAR c)
             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;
-            else if (c>=0x0C41 && c<=0x0C44) return lex_Matra_post;
+            else if (c>=0x0C41 && c<=0x0C42) return lex_Matra_post;
+            else if (c>=0x0C43 && c<=0x0C44) return lex_Modifier;
             else if (c>=0x0C46 && c<=0x0C47) return lex_Matra_above;
             else if (c>=0x0C4A && c<=0x0C4C) return lex_Matra_above;
             else if (c>=0x0C58 && c<=0x0C59) return lex_Consonant;
             else if (c>=0x0C60 && c<=0x0C61) return lex_Vowel;
-            else if (c>=0x0C62 && c<=0x0C63) return lex_Matra_below;
+            else if (c>=0x0C62 && c<=0x0C63) return lex_Modifier;
             else return lex_Generic;
     }
 }




More information about the wine-cvs mailing list