From: simon Date: Sat, 24 Sep 2005 16:02:49 +0000 (+0000) Subject: CNS 11643 goes above the BMP, so the test code should take that into X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/charset/commitdiff_plain/387b57a52c3104263042fc8365e1603bbfe51c13 CNS 11643 goes above the BMP, so the test code should take that into account when checking the reverse mapping for every potentially relevant Unicode character. git-svn-id: svn://svn.tartarus.org/sgt/charset@6343 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/cns11643.c b/cns11643.c index f39d51b..3f20763 100644 --- a/cns11643.c +++ b/cns11643.c @@ -15784,7 +15784,7 @@ int main(void) } } - for (u = 0; u < 0x10000L; u++) { + for (u = 0; u < 0x30000L; u++) { ret = unicode_to_cns11643(u, &p, &r, &c); if (ret) { uu = cns11643_to_unicode(p, r, c);