From 8d352139536682bf58b5a25a42b1f35d5f058ade Mon Sep 17 00:00:00 2001 From: Hidetoshi Tajima Date: Thu, 7 Nov 2002 18:09:22 +0000 Subject: Fix #96781: changes for basic X shaper's code range for compatibility Ideographs characters (0xFA0C - 0xFA2D) (by federic.zhang@sun.com) --- ChangeLog | 7 +++++++ ChangeLog.pre-1-10 | 7 +++++++ ChangeLog.pre-1-2 | 7 +++++++ ChangeLog.pre-1-4 | 7 +++++++ ChangeLog.pre-1-6 | 7 +++++++ ChangeLog.pre-1-8 | 7 +++++++ modules/basic/basic-x.c | 9 +++++---- 7 files changed, 47 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index d4c700c1..dc08085a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Thu Nov 7 10:08:19 2002 HideToshi Tajima + + * modules/basic/basic-x.c: + Fix #96781: changes for basic X shaper's code range for + compatibility Ideographs characters (0xFA0C - 0xFA2D) + (by federic.zhang@sun.com) + 2002-11-05 Changwoo Ryu * modules/hangul/hangul-x.c: No more use of TFILL, the internal diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10 index d4c700c1..dc08085a 100644 --- a/ChangeLog.pre-1-10 +++ b/ChangeLog.pre-1-10 @@ -1,3 +1,10 @@ +Thu Nov 7 10:08:19 2002 HideToshi Tajima + + * modules/basic/basic-x.c: + Fix #96781: changes for basic X shaper's code range for + compatibility Ideographs characters (0xFA0C - 0xFA2D) + (by federic.zhang@sun.com) + 2002-11-05 Changwoo Ryu * modules/hangul/hangul-x.c: No more use of TFILL, the internal diff --git a/ChangeLog.pre-1-2 b/ChangeLog.pre-1-2 index d4c700c1..dc08085a 100644 --- a/ChangeLog.pre-1-2 +++ b/ChangeLog.pre-1-2 @@ -1,3 +1,10 @@ +Thu Nov 7 10:08:19 2002 HideToshi Tajima + + * modules/basic/basic-x.c: + Fix #96781: changes for basic X shaper's code range for + compatibility Ideographs characters (0xFA0C - 0xFA2D) + (by federic.zhang@sun.com) + 2002-11-05 Changwoo Ryu * modules/hangul/hangul-x.c: No more use of TFILL, the internal diff --git a/ChangeLog.pre-1-4 b/ChangeLog.pre-1-4 index d4c700c1..dc08085a 100644 --- a/ChangeLog.pre-1-4 +++ b/ChangeLog.pre-1-4 @@ -1,3 +1,10 @@ +Thu Nov 7 10:08:19 2002 HideToshi Tajima + + * modules/basic/basic-x.c: + Fix #96781: changes for basic X shaper's code range for + compatibility Ideographs characters (0xFA0C - 0xFA2D) + (by federic.zhang@sun.com) + 2002-11-05 Changwoo Ryu * modules/hangul/hangul-x.c: No more use of TFILL, the internal diff --git a/ChangeLog.pre-1-6 b/ChangeLog.pre-1-6 index d4c700c1..dc08085a 100644 --- a/ChangeLog.pre-1-6 +++ b/ChangeLog.pre-1-6 @@ -1,3 +1,10 @@ +Thu Nov 7 10:08:19 2002 HideToshi Tajima + + * modules/basic/basic-x.c: + Fix #96781: changes for basic X shaper's code range for + compatibility Ideographs characters (0xFA0C - 0xFA2D) + (by federic.zhang@sun.com) + 2002-11-05 Changwoo Ryu * modules/hangul/hangul-x.c: No more use of TFILL, the internal diff --git a/ChangeLog.pre-1-8 b/ChangeLog.pre-1-8 index d4c700c1..dc08085a 100644 --- a/ChangeLog.pre-1-8 +++ b/ChangeLog.pre-1-8 @@ -1,3 +1,10 @@ +Thu Nov 7 10:08:19 2002 HideToshi Tajima + + * modules/basic/basic-x.c: + Fix #96781: changes for basic X shaper's code range for + compatibility Ideographs characters (0xFA0C - 0xFA2D) + (by federic.zhang@sun.com) + 2002-11-05 Changwoo Ryu * modules/hangul/hangul-x.c: No more use of TFILL, the internal diff --git a/modules/basic/basic-x.c b/modules/basic/basic-x.c index 47f4e0a2..2cce3046 100644 --- a/modules/basic/basic-x.c +++ b/modules/basic/basic-x.c @@ -123,10 +123,11 @@ static PangoEngineRange basic_ranges[] = { { 0x2000, 0x33ff, "*" }, { 0x3400, 0x9fa5, "*" }, /* Unihan */ { 0xa000, 0xa4c6, "*" }, /* Yi */ - { 0xac00, 0xd7a3, "kr" }, - { 0xe000, 0xf7ee, "*" }, /* HKSCS */ - { 0xf900, 0xfa0b, "kr" }, - { 0xff00, 0xffed, "*" } + { 0xac00, 0xd7a3, "" }, + { 0xe000, 0xf7ee, "*" }, /* HKSCS-1999 */ + { 0xf900, 0xfa2d, "*" }, /* CJK Compatibility Ideographs */ + { 0xfe30, 0xfe6b, "*" }, /* CJK Compatibility Forms and Small Form Variants */ + { 0xff00, 0xffee, "*" } /* Halfwidth and Fullwidth Forms */ }; static PangoEngineInfo script_engines[] = { -- cgit v1.2.1