diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-08-29 21:14:05 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-08-29 21:14:05 +0000 |
commit | c7c3b0e907efac218b329ebbe3fc7432ec4415c5 (patch) | |
tree | 9d7b90e399e6ee1e87e49dec92ec47f4476352f3 /iconvdata/sjis.c | |
parent | 4dadd40cc72ddee017ebd0d278671398485dcbb6 (diff) | |
download | glibc-c7c3b0e907efac218b329ebbe3fc7432ec4415c5.tar glibc-c7c3b0e907efac218b329ebbe3fc7432ec4415c5.tar.gz glibc-c7c3b0e907efac218b329ebbe3fc7432ec4415c5.tar.bz2 glibc-c7c3b0e907efac218b329ebbe3fc7432ec4415c5.zip |
Update.
2000-08-29 Akira Higuchi <a@kondara.org>
* iconv/gconv_db.c (increment_counter): Reset __init_fct, __fct,
and __end_fct fields of struct __gconv_step.
* iconv/Makefile (tests): Add iconv-bug2.
* iconv/iconv-bug2.c: New file.
* iconvdata/euc-kr.c (BODY for FROM_LOOP): Pass 'inend - inptr'
instead of 'inptr - inend' to ksc5601_to_ucs4.
* iconvdata/sjis.c (BODY for FROM_LOOP): Allow 0x7f character.
* iconvdata/iso-2022-cn.c (BODY for FROM_LOOP): If an incomplete
character or shift sequence is found at the end of the input
string, return__GCONV_INCOMPLETE_INPUT instead of
__GCONV_EMPTY_INPUT.
* iconvdata/iso-2022-jp.c (BODY for FROM_LOOP): Likewise.
* iconvdata/iso-2022-kr.c (BODY for FROM_LOOP): Likewise.
* iconvdata/iso-2022-jp.c (BODY for FROM_LOOP): Return
__GCONV_ILLEGAL_INPUT for 8bit characters.
Diffstat (limited to 'iconvdata/sjis.c')
-rw-r--r-- | iconvdata/sjis.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/iconvdata/sjis.c b/iconvdata/sjis.c index 244cec6db4..7bbfef3e5d 100644 --- a/iconvdata/sjis.c +++ b/iconvdata/sjis.c @@ -1941,7 +1941,7 @@ static const char from_ucs4_lat1[0xf8][2] = [0x0075] = "\x75\x00", [0x0076] = "\x76\x00", [0x0077] = "\x77\x00", [0x0078] = "\x78\x00", [0x0079] = "\x79\x00", [0x007a] = "\x7a\x00", [0x007b] = "\x7b\x00", [0x007c] = "\x7c\x00", [0x007d] = "\x7d\x00", - [0x007e] = "\x7e\x00", + [0x007e] = "\x7e\x00", [0x007f] = "\x7f\x00", [0x00a2] = "\x81\x91", [0x00a3] = "\x81\x92", [0x00a5] = "\x5c\x00", [0x00a7] = "\x81\x98", [0x00a8] = "\x81\x4e", [0x00ac] = "\x81\xca", [0x00b0] = "\x81\x8b", [0x00b1] = "\x81\x7d", [0x00b4] = "\x81\x4c", @@ -4353,7 +4353,7 @@ static const char from_ucs4_extra[0x100][2] = ch = 0x203e; \ ++inptr; \ } \ - else if (ch < 0x7e) \ + else if (ch < 0x80) \ ++inptr; \ else if (ch >= 0xa1 && ch <= 0xdf) \ { \ |