summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2006-12-13 05:52:38 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2006-12-13 05:52:38 +0000
commitd1f10ca29c210dc064e48a39dd71ae8e8cd334ff (patch)
tree0b733d572d5dc597b5adc0a0fddf9670cb6011e1
parente2c914724b527154d44e2c7f012bbca5c866491f (diff)
downloadpango-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.
-rw-r--r--ChangeLog9
-rw-r--r--modules/indic/indic-ot-class-tables.c2
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 07dc599c..f426a9e4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+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.
+
2006-12-08 Behdad Esfahbod <behdad@gnome.org>
Red Hat Bug 211574: [hi/ml/si_LK] cursor naviation is wrong when
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)
{