]> git.ipfire.org Git - thirdparty/gnulib.git/commitdiff
uniwbrk: Correction of Unicode 10.0.0 support.
authorBruno Haible <bruno@clisp.org>
Thu, 30 Dec 2021 22:12:41 +0000 (23:12 +0100)
committerBruno Haible <bruno@clisp.org>
Thu, 30 Dec 2021 22:12:41 +0000 (23:12 +0100)
* lib/gen-uni-tables.c (is_WBP_MIDLETTER): Remove character 0x02D7.
The generated files are not affected.

ChangeLog
lib/gen-uni-tables.c

index bf46faff6ddb190152339ea06f0a0274e1ca6268..248ccb1b65bf6a4e08ddb9982a3a66602b32fc6e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2021-12-30  Bruno Haible  <bruno@clisp.org>
+
+       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  <bruno@clisp.org>
 
        Update to Unicode 12.1.0.
index d9e4e46f27ceee4d25b11abcf2489525b0e61309..fd7115f59cf878cadf10ec39e30dd17ed4a07a1c 100644 (file)
@@ -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);
 }
 
 /* ========================================================================= */