diff options
author | Behdad Esfahbod <behdad@src.gnome.org> | 2004-07-27 18:09:39 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2004-07-27 18:09:39 +0000 |
commit | 09b3cdc09541485f8938e26b6863df825f305047 (patch) | |
tree | a8e17198f628bb7f415f601c7d03406aa091acef /modules/arabic | |
parent | 6cb208b12e181275274bb87d736db658100e74f3 (diff) | |
download | pango-09b3cdc09541485f8938e26b6863df825f305047.tar.gz |
Don't substitute FARSI YEH with ARABIC YEH if the font does not have any
* modules/arabic/arabic-fc.c: Don't substitute FARSI YEH
with ARABIC YEH if the font does not have any ARABIC YEH.
Diffstat (limited to 'modules/arabic')
-rw-r--r-- | modules/arabic/arabic-fc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/arabic/arabic-fc.c b/modules/arabic/arabic-fc.c index 01841c33..e037a609 100644 --- a/modules/arabic/arabic-fc.c +++ b/modules/arabic/arabic-fc.c @@ -315,9 +315,10 @@ arabic_engine_shape (PangoEngineShape *engine, /* Hack - Microsoft fonts are strange and don't contain the * correct rules to shape ARABIC LETTER FARSI YEH in * medial/initial position. It looks identical to ARABIC LETTER - * YEH in these positions, so we substitute + * YEH in these positions, so we substitute if the font contains + * ARABIC LETTER YEH */ - if (wc == 0x6cc && ruleset && + if (wc == 0x6cc && ruleset && pango_fc_font_get_glyph (fc_font, 0x64a) && ((properties[i] & (initial | medial)) != (initial | medial))) wc = 0x64a; |