summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2014-07-31 10:48:37 -0400
committerBehdad Esfahbod <behdad@behdad.org>2014-07-31 10:48:37 -0400
commitc53b48e5a3a46784c5008f692cfbf24d75571f10 (patch)
treedb4ca6ad56e6061f2be0dc0836cc004c36128777
parent61aeba6257ec7691a7a5222fb69aec3cc042435b (diff)
downloadpango-c53b48e5a3a46784c5008f692cfbf24d75571f10.tar.gz
Add more Hangul jamo to previous commit
https://github.com/GNOME/pango/commit/61aeba6257ec7691a7a5222fb69aec3cc042435b#commitcomment-7215250
-rw-r--r--pango/pango-context.c4
1 files changed, 3 insertions, 1 deletions
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);