[gucharmap] Update gucharmap_get_unicode_name()



commit ac625175a494a80bc6187cd622d19b2e6779adb8
Author: Christian Persch <chpe gnome org>
Date:   Mon Mar 8 15:00:09 2010 +0100

    Update gucharmap_get_unicode_name()
    
    Code points U+9FA6..U+9FBB are assigned since Unicode 4.1.0,
    U+9FBC..U+9FC3 since Unicode 5.1.0, and U+9FC4..U+9FCB since
    Unicode 5.2.0.
    
    Bug #606199.

 gucharmap/gucharmap-unicode-info.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gucharmap/gucharmap-unicode-info.c b/gucharmap/gucharmap-unicode-info.c
index e663508..7a99416 100644
--- a/gucharmap/gucharmap-unicode-info.c
+++ b/gucharmap/gucharmap-unicode-info.c
@@ -66,7 +66,7 @@ gucharmap_get_unicode_name (gunichar wc)
   _gucharmap_intl_ensure_initialized ();
 
   if ((wc >= 0x3400 && wc <= 0x4DB5)
-      || (wc >= 0x4e00 && wc <= 0x9fa5) 
+      || (wc >= 0x4e00 && wc <= 0x9fcb)
       || (wc >= 0x20000 && wc <= 0x2A6D6))
     {
       g_snprintf (buf, sizeof (buf), "CJK UNIFIED IDEOGRAPH-%04X", wc);



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