[pango] Add more Hangul jamo to previous commit



commit c53b48e5a3a46784c5008f692cfbf24d75571f10
Author: Behdad Esfahbod <behdad behdad org>
Date:   Thu Jul 31 10:48:37 2014 -0400

    Add more Hangul jamo to previous commit
    
    https://github.com/GNOME/pango/commit/61aeba6257ec7691a7a5222fb69aec3cc042435b#commitcomment-7215250

 pango/pango-context.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)
---
diff --git a/pango/pango-context.c b/pango/pango-context.c
index 4817fac..ff95b5c 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);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]