diff options
author | Roozbeh Pournader <roozbeh@sharif.edu> | 2004-01-06 14:07:49 +0000 |
---|---|---|
committer | Roozbeh Pournader <roozbeh@src.gnome.org> | 2004-01-06 14:07:49 +0000 |
commit | eb5c01460c45860858c883655c10ce4fcd8c2170 (patch) | |
tree | 19dae2f9e5f173a3dc66605ced6a3aa29a52f8ff /modules | |
parent | 7fb1d2a6d7b1ed1d2b6372f88be96f3c097c77f6 (diff) | |
download | pango-eb5c01460c45860858c883655c10ce4fcd8c2170.tar.gz |
Corrected a mistake between ZWJ and ZWNJ. (#130517)
2004-01-06 Roozbeh Pournader <roozbeh@sharif.edu>
* modules/arabic/arabic-ot.c: Corrected a mistake between ZWJ and
ZWNJ. (#130517)
Diffstat (limited to 'modules')
-rw-r--r-- | modules/arabic/arabic-ot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/arabic/arabic-ot.c b/modules/arabic/arabic-ot.c index d50bf749..ccde4fa9 100644 --- a/modules/arabic/arabic-ot.c +++ b/modules/arabic/arabic-ot.c @@ -27,7 +27,7 @@ * * The following character also has a joining class: * - * U+200C ZERO WIDTH NON-JOINER -> causing + * U+200D ZERO WIDTH JOINER -> causing * * All other characters are given the joining class `none'. * @@ -269,7 +269,7 @@ static joining_class Get_Joining_Class (gunichar* string, if (string[pos] < 0x0620 || string[pos] >= 0x0700) { - if (string[pos] == 0x200C) + if (string[pos] == 0x200D) return causing; else return none; |