diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-10 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-2 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-4 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-6 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-8 | 5 | ||||
-rw-r--r-- | modules/hangul/hangul-x.c | 12 |
7 files changed, 36 insertions, 6 deletions
@@ -1,3 +1,8 @@ +2002-11-09 Changwoo Ryu <cwryu@debian.org> + + * modules/hangul/hangul-x.c (render_syllable_with_ksx1001johab): + Renamed from render_syllable_with_ksx1005 (#95800). + Thu Nov 7 10:05:28 2002 HideToshi Tajima <hidetoshi.tajima@sun.com> * modules/basic/basic-x.c: diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10 index 9d9b649d..fd51e07d 100644 --- a/ChangeLog.pre-1-10 +++ b/ChangeLog.pre-1-10 @@ -1,3 +1,8 @@ +2002-11-09 Changwoo Ryu <cwryu@debian.org> + + * modules/hangul/hangul-x.c (render_syllable_with_ksx1001johab): + Renamed from render_syllable_with_ksx1005 (#95800). + Thu Nov 7 10:05:28 2002 HideToshi Tajima <hidetoshi.tajima@sun.com> * modules/basic/basic-x.c: diff --git a/ChangeLog.pre-1-2 b/ChangeLog.pre-1-2 index 9d9b649d..fd51e07d 100644 --- a/ChangeLog.pre-1-2 +++ b/ChangeLog.pre-1-2 @@ -1,3 +1,8 @@ +2002-11-09 Changwoo Ryu <cwryu@debian.org> + + * modules/hangul/hangul-x.c (render_syllable_with_ksx1001johab): + Renamed from render_syllable_with_ksx1005 (#95800). + Thu Nov 7 10:05:28 2002 HideToshi Tajima <hidetoshi.tajima@sun.com> * modules/basic/basic-x.c: diff --git a/ChangeLog.pre-1-4 b/ChangeLog.pre-1-4 index 9d9b649d..fd51e07d 100644 --- a/ChangeLog.pre-1-4 +++ b/ChangeLog.pre-1-4 @@ -1,3 +1,8 @@ +2002-11-09 Changwoo Ryu <cwryu@debian.org> + + * modules/hangul/hangul-x.c (render_syllable_with_ksx1001johab): + Renamed from render_syllable_with_ksx1005 (#95800). + Thu Nov 7 10:05:28 2002 HideToshi Tajima <hidetoshi.tajima@sun.com> * modules/basic/basic-x.c: diff --git a/ChangeLog.pre-1-6 b/ChangeLog.pre-1-6 index 9d9b649d..fd51e07d 100644 --- a/ChangeLog.pre-1-6 +++ b/ChangeLog.pre-1-6 @@ -1,3 +1,8 @@ +2002-11-09 Changwoo Ryu <cwryu@debian.org> + + * modules/hangul/hangul-x.c (render_syllable_with_ksx1001johab): + Renamed from render_syllable_with_ksx1005 (#95800). + Thu Nov 7 10:05:28 2002 HideToshi Tajima <hidetoshi.tajima@sun.com> * modules/basic/basic-x.c: diff --git a/ChangeLog.pre-1-8 b/ChangeLog.pre-1-8 index 9d9b649d..fd51e07d 100644 --- a/ChangeLog.pre-1-8 +++ b/ChangeLog.pre-1-8 @@ -1,3 +1,8 @@ +2002-11-09 Changwoo Ryu <cwryu@debian.org> + + * modules/hangul/hangul-x.c (render_syllable_with_ksx1001johab): + Renamed from render_syllable_with_ksx1005 (#95800). + Thu Nov 7 10:05:28 2002 HideToshi Tajima <hidetoshi.tajima@sun.com> * modules/basic/basic-x.c: diff --git a/modules/hangul/hangul-x.c b/modules/hangul/hangul-x.c index 9c4571fc..1cf5c91c 100644 --- a/modules/hangul/hangul-x.c +++ b/modules/hangul/hangul-x.c @@ -320,10 +320,10 @@ render_syllable_with_johab (PangoFont *font, PangoXSubfont subfont, } static void -render_syllable_with_ksx1005 (PangoFont *font, PangoXSubfont subfont, - gunichar *text, int length, - PangoGlyphString *glyphs, - int *n_glyphs, int cluster_offset) +render_syllable_with_ksx1001johab (PangoFont *font, PangoXSubfont subfont, + gunichar *text, int length, + PangoGlyphString *glyphs, + int *n_glyphs, int cluster_offset) { int n_prev_glyphs = *n_glyphs; guint16 gindex; @@ -664,7 +664,7 @@ find_subfont (PangoFont *font, char **charsets, int n_charsets, else if (strcmp (charsets[subfont_charsets[i]], "ksc5601.1992-3") == 0) { *subfont = subfonts[i]; - *render_func = render_syllable_with_ksx1005; + *render_func = render_syllable_with_ksx1001johab; break; } else if (strcmp (charsets[subfont_charsets[i]], "ksc5601.1987-0") == 0) @@ -839,7 +839,7 @@ hangul_engine_get_coverage (PangoFont *font, for (i=0; i<KSC5601_HANGUL; i++) pango_coverage_set (result, __ksc5601_hangul_to_ucs[i], PANGO_COVERAGE_EXACT); } - else if (render_func == render_syllable_with_ksx1005) + else if (render_func == render_syllable_with_ksx1001johab) { for (i = 0x1100; i <= 0x11ff; i++) pango_coverage_set (result, i, PANGO_COVERAGE_EXACT); |