From e58768eb6522bb601b9fb7084a5a4bc2821090ad Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Sat, 6 Sep 2025 14:02:31 +0200 Subject: [PATCH] antimixedutf8: ignore general punctuation block transitions Since those can happen in ordinary text. --- src/modules/utf8functions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/utf8functions.c b/src/modules/utf8functions.c index 1380fae59..540e09cc2 100644 --- a/src/modules/utf8functions.c +++ b/src/modules/utf8functions.c @@ -128,7 +128,7 @@ UnicodeBlocks unicode_blocks[UNICODE_BLOCK_COUNT] = {0x1DC0, 0x1DFF, "Combining Diacritical Marks Supplement", 1}, {0x1E00, 0x1EFF, "Latin Extended Additional", 1}, {0x1F00, 0x1FFF, "Greek Extended", 1}, - {0x2000, 0x206F, "General Punctuation", 1}, + {0x2000, 0x206F, "General Punctuation", 0}, {0x2070, 0x209F, "Superscripts and Subscripts", 1}, {0x20A0, 0x20CF, "Currency Symbols", 1}, {0x20D0, 0x20FF, "Combining Diacritical Marks for Symbols", 1},