summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2021-12-30 23:12:41 +0100
committerBruno Haible <bruno@clisp.org>2021-12-30 23:12:41 +0100
commit09cf5f3ac960dc7f413186bbda1c8aa2d43944df (patch)
treeebfd8f4eca9d6a360c5af5b9f788a3e4171c26d8
parent972be3cee24d6e9b84de7250c5bc7f078ac1a19d (diff)
downloadgnulib-09cf5f3ac960dc7f413186bbda1c8aa2d43944df.tar.gz
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.
-rw-r--r--ChangeLog6
-rw-r--r--lib/gen-uni-tables.c3
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index bf46faff6d..248ccb1b65 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
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.
* lib/gen-uni-tables.c: Update comments.
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);
}
/* ========================================================================= */