summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2004-07-30 17:48:44 +0000
committerOwen Taylor <otaylor@src.gnome.org>2004-07-30 17:48:44 +0000
commitf0eaa347abd1e686a08d334ae93a3218988c1e64 (patch)
treeaac04774d4d087c82707ccfd15f310bfa83cb5fe
parentd270caf30f83f51f47e4ad435f3d61a9bea8b3da (diff)
downloadpango-f0eaa347abd1e686a08d334ae93a3218988c1e64.tar.gz
Suppress blwf on the first consonant in a syllable. (#118301, Taneem
Fri Jul 30 13:33:49 2004 Owen Taylor <otaylor@redhat.com> * modules/indic/indic-ot.c (indic_ot_reorder): Suppress blwf on the first consonant in a syllable. (#118301, Taneem Ahmed)
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLog.pre-1-106
-rw-r--r--ChangeLog.pre-1-66
-rw-r--r--ChangeLog.pre-1-86
-rw-r--r--modules/indic/indic-ot.c5
5 files changed, 28 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ce3842ed..666fa640 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri Jul 30 13:33:49 2004 Owen Taylor <otaylor@redhat.com>
+
+ * modules/indic/indic-ot.c (indic_ot_reorder): Suppress
+ blwf on the first consonant in a syllable. (#118301,
+ Taneem Ahmed)
+
Thu Jul 29 16:10:06 2004 Owen Taylor <otaylor@redhat.com>
Fix Malayalam double-consonant conjuncts: #121671, Rajkumar S
diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10
index ce3842ed..666fa640 100644
--- a/ChangeLog.pre-1-10
+++ b/ChangeLog.pre-1-10
@@ -1,3 +1,9 @@
+Fri Jul 30 13:33:49 2004 Owen Taylor <otaylor@redhat.com>
+
+ * modules/indic/indic-ot.c (indic_ot_reorder): Suppress
+ blwf on the first consonant in a syllable. (#118301,
+ Taneem Ahmed)
+
Thu Jul 29 16:10:06 2004 Owen Taylor <otaylor@redhat.com>
Fix Malayalam double-consonant conjuncts: #121671, Rajkumar S
diff --git a/ChangeLog.pre-1-6 b/ChangeLog.pre-1-6
index ce3842ed..666fa640 100644
--- a/ChangeLog.pre-1-6
+++ b/ChangeLog.pre-1-6
@@ -1,3 +1,9 @@
+Fri Jul 30 13:33:49 2004 Owen Taylor <otaylor@redhat.com>
+
+ * modules/indic/indic-ot.c (indic_ot_reorder): Suppress
+ blwf on the first consonant in a syllable. (#118301,
+ Taneem Ahmed)
+
Thu Jul 29 16:10:06 2004 Owen Taylor <otaylor@redhat.com>
Fix Malayalam double-consonant conjuncts: #121671, Rajkumar S
diff --git a/ChangeLog.pre-1-8 b/ChangeLog.pre-1-8
index ce3842ed..666fa640 100644
--- a/ChangeLog.pre-1-8
+++ b/ChangeLog.pre-1-8
@@ -1,3 +1,9 @@
+Fri Jul 30 13:33:49 2004 Owen Taylor <otaylor@redhat.com>
+
+ * modules/indic/indic-ot.c (indic_ot_reorder): Suppress
+ blwf on the first consonant in a syllable. (#118301,
+ Taneem Ahmed)
+
Thu Jul 29 16:10:06 2004 Owen Taylor <otaylor@redhat.com>
Fix Malayalam double-consonant conjuncts: #121671, Rajkumar S
diff --git a/modules/indic/indic-ot.c b/modules/indic/indic-ot.c
index 332638a4..95a8bf01 100644
--- a/modules/indic/indic-ot.c
+++ b/modules/indic/indic-ot.c
@@ -294,7 +294,10 @@ glong indic_ot_reorder(const gunichar *chars, const glong *utf8_offsets, glong c
for (i = baseLimit; i < baseConsonant; i += 1) {
gunichar ch = chars[i];
- gulong tag = blwf_p;
+ /* Applying blwf to the first consonant doesn't makes sense
+ * since the below-form follows the consonant that it is
+ * put under */
+ gulong tag = (i == baseLimit) ? half_p : blwf_p;
IndicOTCharClass charClass = indic_ot_get_char_class(class_table, ch);
if (IS_CONSONANT(charClass)) {