Aric Stewart : usp10: Handle the Gurmukhi addak.
Module: wine Branch: master Commit: ff9ae10ba567bf72b512e545fb398d33e9a9eea0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ff9ae10ba567bf72b512e545fb... Author: Aric Stewart <aric(a)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[] = {
participants (1)
-
Alexandre Julliard