usp10: Handle the Gurmukhi addak.

This commit is contained in:
Aric Stewart 2011-12-01 10:13:34 -06:00 committed by Alexandre Julliard
parent 302409ebe4
commit ff9ae10ba5
1 changed files with 4 additions and 1 deletions

View File

@ -2597,6 +2597,9 @@ static void ContextualShape_Bengali(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *
static int gurmukhi_lex(WCHAR c)
{
if (c == 0x0A71)
return lex_Modifier;
else
return unicode_lex(c);
}