diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2006-12-13 05:52:38 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2006-12-13 05:52:38 +0000 |
commit | d1f10ca29c210dc064e48a39dd71ae8e8cd334ff (patch) | |
tree | 0b733d572d5dc597b5adc0a0fddf9670cb6011e1 /modules/indic | |
parent | e2c914724b527154d44e2c7f012bbca5c866491f (diff) | |
download | pango-d1f10ca29c210dc064e48a39dd71ae8e8cd334ff.tar.gz |
Bug 385321 – Worst case expansion for Sinhala Patch from Harshula
2006-12-13 Behdad Esfahbod <behdad@gnome.org>
Bug 385321 – Worst case expansion for Sinhala
Patch from Harshula
* modules/indic/indic-ot-class-tables.c: Change worst case expansion
for Sinhala from 3 to 4. This is only superficial because Pango
doesn't appear to ever use the worst case expansion value.
Diffstat (limited to 'modules/indic')
-rw-r--r-- | modules/indic/indic-ot-class-tables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/indic/indic-ot-class-tables.c b/modules/indic/indic-ot-class-tables.c index 45bf0b05..52966c8f 100644 --- a/modules/indic/indic-ot-class-tables.c +++ b/modules/indic/indic-ot-class-tables.c @@ -289,7 +289,7 @@ INDIC_OT_CLASS_TABLE_DEFINE (taml_class_table, 0x0B80, 3, TAML_SCRIPT_FLAGS, tam INDIC_OT_CLASS_TABLE_DEFINE (telu_class_table, 0x0C00, 3, TELU_SCRIPT_FLAGS, teluCharClasses, teluSplitTable); INDIC_OT_CLASS_TABLE_DEFINE (knda_class_table, 0x0C80, 4, KNDA_SCRIPT_FLAGS, kndaCharClasses, kndaSplitTable); INDIC_OT_CLASS_TABLE_DEFINE (mlym_class_table, 0x0D00, 3, MLYM_SCRIPT_FLAGS, mlymCharClasses, mlymSplitTable); -INDIC_OT_CLASS_TABLE_DEFINE (sinh_class_table, 0x0D80, 3, SINH_SCRIPT_FLAGS, sinhCharClasses, sinhSplitTable); +INDIC_OT_CLASS_TABLE_DEFINE (sinh_class_table, 0x0D80, 4, SINH_SCRIPT_FLAGS, sinhCharClasses, sinhSplitTable); const IndicOTSplitMatra *indic_ot_get_split_matra(const IndicOTClassTable *class_table, IndicOTCharClass char_class) { |