summaryrefslogtreecommitdiff
path: root/lib/gen-uni-tables.c
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 /lib/gen-uni-tables.c
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.
Diffstat (limited to 'lib/gen-uni-tables.c')
-rw-r--r--lib/gen-uni-tables.c3
1 files changed, 1 insertions, 2 deletions
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);
}
/* ========================================================================= */