From 09b3cdc09541485f8938e26b6863df825f305047 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 27 Jul 2004 18:09:39 +0000 Subject: 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. --- modules/arabic/arabic-fc.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'modules') 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; -- cgit v1.2.1