Aric Stewart : usp10: Handle the Gurmukhi addak.

Alexandre Julliard julliard at winehq.org
Thu Dec 1 14:05:34 CST 2011


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

Author: Aric Stewart <aric at codeweavers.com>
Date:   Thu Dec  1 10:13:34 2011 -0600

usp10: Handle the Gurmukhi addak.

---

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

diff --git a/dlls/usp10/shape.c b/dlls/usp10/shape.c
index 7583326..36fa404 100644
--- a/dlls/usp10/shape.c
+++ b/dlls/usp10/shape.c
@@ -2597,7 +2597,10 @@ static void ContextualShape_Bengali(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *
 
 static int gurmukhi_lex(WCHAR c)
 {
-    return unicode_lex(c);
+    if (c == 0x0A71)
+        return lex_Modifier;
+    else
+        return unicode_lex(c);
 }
 
 static const ConsonantComponents Gurmukhi_consonants[] = {




More information about the wine-cvs mailing list