summaryrefslogtreecommitdiff
path: root/modules/tibetan
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2007-05-10 23:56:11 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2007-05-10 23:56:11 +0000
commit426b1f1fbc453a6d42bcf3cc3acc53634d437219 (patch)
treef60eff04c7467fc50673824a0fa9539aa396c2b1 /modules/tibetan
parentb2859fd1776ebf5aa55163f5bc630291d13c29c6 (diff)
downloadpango-426b1f1fbc453a6d42bcf3cc3acc53634d437219.tar.gz
Use PANGO_OT_DEFAULT_LANGUAGE and PANGO_OT_ALL_GLYPHS instead of hardcoded
2007-05-10 Behdad Esfahbod <behdad@gnome.org> * modules/arabic/arabic-fc.c (maybe_add_gsub_feature), (maybe_add_gpos_feature), (get_ruleset): * modules/basic/basic-fc.c (get_ruleset): * modules/hebrew/hebrew-fc.c (maybe_add_gsub_feature), (maybe_add_gpos_feature), (get_ruleset): * modules/indic/indic-fc.c (maybe_add_GSUB_feature), (maybe_add_GPOS_feature): * modules/khmer/khmer-fc.c (maybe_add_GSUB_feature), (maybe_add_GPOS_feature): * modules/syriac/syriac-fc.c (maybe_add_gsub_feature), (maybe_add_gpos_feature), (get_ruleset): * modules/thai/thai-ot.c (maybe_add_gsub_feature), (maybe_add_gpos_feature), (thai_ot_get_ruleset), (lao_ot_get_ruleset): * modules/tibetan/tibetan-fc.c (maybe_add_GSUB_feature), (maybe_add_GPOS_feature): Use PANGO_OT_DEFAULT_LANGUAGE and PANGO_OT_ALL_GLYPHS instead of hardcoded 0xFFFF. svn path=/trunk/; revision=2282
Diffstat (limited to 'modules/tibetan')
-rw-r--r--modules/tibetan/tibetan-fc.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/tibetan/tibetan-fc.c b/modules/tibetan/tibetan-fc.c
index dfb68820..5dffc0b5 100644
--- a/modules/tibetan/tibetan-fc.c
+++ b/modules/tibetan/tibetan-fc.c
@@ -391,9 +391,8 @@ maybe_add_GSUB_feature (PangoOTRuleset *ruleset,
{
guint feature_index;
- /* 0xffff == default language system */
if (pango_ot_info_find_feature (info, PANGO_OT_TABLE_GSUB,
- tag, script_index, 0xffff, &feature_index))
+ tag, script_index, PANGO_OT_DEFAULT_LANGUAGE, &feature_index))
pango_ot_ruleset_add_feature (ruleset, PANGO_OT_TABLE_GSUB, feature_index,
property_bit);
}
@@ -408,9 +407,8 @@ maybe_add_GPOS_feature (PangoOTRuleset *ruleset,
{
guint feature_index;
- /* 0xffff == default language system */
if (pango_ot_info_find_feature (info, PANGO_OT_TABLE_GPOS,
- tag, script_index, 0xffff, &feature_index))
+ tag, script_index, PANGO_OT_DEFAULT_LANGUAGE, &feature_index))
pango_ot_ruleset_add_feature (ruleset, PANGO_OT_TABLE_GPOS, feature_index,
property_bit);
}