From da1fa444b9c1c766daaf04357b207a21cef7be8a Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sun, 2 Dec 2012 17:14:01 +0200 Subject: Fix grapheme properties of U+FFxx range Oops! --- pango/break.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pango/break.c') 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: -- cgit v1.2.1