Commit ff9ae10b authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

usp10: Handle the Gurmukhi addak.

parent 302409eb
......@@ -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[] = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment