diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-12-29 07:32:44 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-12-29 07:32:44 +0000 |
commit | 15a2315cb457be0599d7a662e64aa54e560f96f0 (patch) | |
tree | 0e9915fb5d494269e1637674e5a78368d0700f81 /iconvdata/iso-2022-kr.c | |
parent | 6d110ca1858feba75e4b5528d7941770c59d6b5d (diff) | |
download | glibc-15a2315cb457be0599d7a662e64aa54e560f96f0.tar.gz glibc-15a2315cb457be0599d7a662e64aa54e560f96f0.tar.xz glibc-15a2315cb457be0599d7a662e64aa54e560f96f0.zip |
Update.
* iconvdata/Makefile (modules): Add ISO-2022-CN. Add link rules for this module. (distribute): Add iso-2022-cn.c and cns11643l2.h. * iconvdata/cns11643l2.h: New file. * iconvdata/iso-2022-cn.c: New file. * iconvdata/gconv-modules: Add entries for ISO-2022-CN module. * iconvdata/cns11643l1.h (cns11643l1_to_ucs4): Make string argument unsigned. (ucs4_to_cns11643l1): Likewise. * iconvdata/euc-tw.c: Correct parameter passed to cns11643l1_to_ucs4. * iconvdata/iso-2022-kr.c: Remove unnecessary test from conversion loop to UCS4. Optimize recognition of escape sequences a bit.
Diffstat (limited to 'iconvdata/iso-2022-kr.c')
-rw-r--r-- | iconvdata/iso-2022-kr.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/iconvdata/iso-2022-kr.c b/iconvdata/iso-2022-kr.c index 2961490a78..8ed5d210ff 100644 --- a/iconvdata/iso-2022-kr.c +++ b/iconvdata/iso-2022-kr.c @@ -166,11 +166,6 @@ enum \ if (set == ASCII_set) \ { \ - if (ch >= 0x80) \ - { \ - result = __GCONV_ILLEGAL_INPUT; \ - break; \ - } \ /* Almost done, just advance the input pointer. */ \ ++inptr; \ } \ |