From ff9ae10ba567bf72b512e545fb398d33e9a9eea0 Mon Sep 17 00:00:00 2001 From: Aric Stewart Date: Thu, 1 Dec 2011 10:13:34 -0600 Subject: [PATCH] usp10: Handle the Gurmukhi addak. --- dlls/usp10/shape.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dlls/usp10/shape.c b/dlls/usp10/shape.c index 75833267bee..36fa40436fa 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[] = { -- 2.11.4.GIT