summaryrefslogtreecommitdiff
path: root/pango/pango-context.c
diff options
context:
space:
mode:
Diffstat (limited to 'pango/pango-context.c')
-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);