Module: wine Branch: master Commit: acf1343f344e871739094c6eb7879302b9c4fa47 URL: http://source.winehq.org/git/wine.git/?a=commit;h=acf1343f344e871739094c6eb7...
Author: Aric Stewart aric@codeweavers.com Date: Tue Dec 6 08:49:00 2011 -0600
usp10: Handle Halant, ZWJ and ZWNJ in ShapeCharGlyphProp_BaseIndic.
---
dlls/usp10/shape.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/dlls/usp10/shape.c b/dlls/usp10/shape.c index e040e48..8d3a355 100644 --- a/dlls/usp10/shape.c +++ b/dlls/usp10/shape.c @@ -3299,6 +3299,11 @@ static void ShapeCharGlyphProp_BaseIndic( HDC hdc, ScriptCache *psc, SCRIPT_ANAL case lex_Matra_above: case lex_Matra_below: case lex_Modifier: + case lex_Halant: + break; + case lex_ZWJ: + case lex_ZWNJ: + k = char_count; break; default: pGlyphProp[i].sva.fClusterStart = 1;