From 09db445ea23f5283b021504f4f808adee5522ec8 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sun, 28 Jun 2020 21:59:36 -0500 Subject: [PATCH] Update: U+102E0 is essentually a comma and not a number. --- level_0/f_utf/c/private-utf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/level_0/f_utf/c/private-utf.c b/level_0/f_utf/c/private-utf.c index 7b1ea9b..7267fa1 100644 --- a/level_0/f_utf/c/private-utf.c +++ b/level_0/f_utf/c/private-utf.c @@ -680,8 +680,8 @@ extern "C" { if (width == 4) { - // U+102E0 to U+102FB. - if (character >= 0xf0908ba0 && character <= 0xf0908bbb) { + // U+102E1 to U+102FB. + if (character >= 0xf0908ba1 && character <= 0xf0908bbb) { return F_true; } } -- 1.8.3.1