diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2012-12-02 17:14:01 +0200 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2012-12-02 18:09:40 +0200 |
commit | da1fa444b9c1c766daaf04357b207a21cef7be8a (patch) | |
tree | e3a9ae6ee10838db449f1f6d19b690980bfb5e69 /pango/break.c | |
parent | 6512b1961d7f622d4bb2d329d079e7251f80522e (diff) | |
download | pango-da1fa444b9c1c766daaf04357b207a21cef7be8a.tar.gz |
Fix grapheme properties of U+FFxx range
Oops!
Diffstat (limited to 'pango/break.c')
-rw-r--r-- | pango/break.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/break.c b/pango/break.c index c68534c5..ca1eb43f 100644 --- a/pango/break.c +++ b/pango/break.c @@ -752,7 +752,7 @@ pango_default_break (const gchar *text, case 0xFF: if (wc == 0xFF70) WB_type = WB_Katakana; /* Katakana exceptions */ - else if (wc >= 0xFF9E || wc <= 0xFF9F) + else if (wc >= 0xFF9E && wc <= 0xFF9F) WB_type = WB_ExtendFormat; /* Other_Grapheme_Extend */ break; case 0x05: |