From: Bruno Haible Date: Thu, 30 Dec 2021 22:12:41 +0000 (+0100) Subject: uniwbrk: Correction of Unicode 10.0.0 support. X-Git-Tag: v1.0~2444 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=09cf5f3ac960dc7f413186bbda1c8aa2d43944df;p=thirdparty%2Fgnulib.git uniwbrk: Correction of Unicode 10.0.0 support. * lib/gen-uni-tables.c (is_WBP_MIDLETTER): Remove character 0x02D7. The generated files are not affected. --- diff --git a/ChangeLog b/ChangeLog index bf46faff6d..248ccb1b65 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2021-12-30 Bruno Haible + + uniwbrk: Correction of Unicode 10.0.0 support. + * lib/gen-uni-tables.c (is_WBP_MIDLETTER): Remove character 0x02D7. + The generated files are not affected. + 2021-12-30 Bruno Haible Update to Unicode 12.1.0. diff --git a/lib/gen-uni-tables.c b/lib/gen-uni-tables.c index d9e4e46f27..fd7115f59c 100644 --- a/lib/gen-uni-tables.c +++ b/lib/gen-uni-tables.c @@ -2672,8 +2672,7 @@ static bool is_WBP_MIDLETTER (unsigned int ch) { return (ch == 0x00B7 || ch == 0x05F4 || ch == 0x2027 || ch == 0x003A - || ch == 0x0387 || ch == 0xFE13 || ch == 0xFE55 || ch == 0xFF1A - || ch == 0x02D7); + || ch == 0x0387 || ch == 0xFE13 || ch == 0xFE55 || ch == 0xFF1A); } /* ========================================================================= */