mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 21:04:06 +00:00
usp10: Handle the Gurmukhi addak.
This commit is contained in:
parent
302409ebe4
commit
ff9ae10ba5
1 changed files with 4 additions and 1 deletions
|
@ -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[] = {
|
||||
|
|
Loading…
Reference in a new issue