From c53b48e5a3a46784c5008f692cfbf24d75571f10 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 31 Jul 2014 10:48:37 -0400 Subject: Add more Hangul jamo to previous commit https://github.com/GNOME/pango/commit/61aeba6257ec7691a7a5222fb69aec3cc042435b#commitcomment-7215250 --- pango/pango-context.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pango/pango-context.c b/pango/pango-context.c index 4817fac8..ff95b5c2 100644 --- a/pango/pango-context.c +++ b/pango/pango-context.c @@ -867,7 +867,9 @@ update_end (ItemizeState *state) gboolean width_iter_iswide (gunichar ch) { - if (0x1100u <= ch && ch <= 0x11FF) + if ((0x1100u <= ch && ch <= 0x11FFu) || + (0xA960u <= ch && ch <= 0xA97Cu) || + (0xD7B0u <= ch && ch <= 0xD7FBu)) return TRUE; return g_unichar_iswide (ch); -- cgit v1.2.1