From: Kevin Day Date: Tue, 14 Jun 2022 12:24:24 +0000 (-0500) Subject: Cleanup: Use correct range. X-Git-Tag: 0.5.10~41 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=fecad3fc18350757bd4b8e9560e08c081b11688d;p=fll Cleanup: Use correct range. This is not a problem because but it does contain ranges that can never match. --- diff --git a/level_0/f_utf/c/private-utf_combining.c b/level_0/f_utf/c/private-utf_combining.c index 1cdbed4..16d3940 100644 --- a/level_0/f_utf/c/private-utf_combining.c +++ b/level_0/f_utf/c/private-utf_combining.c @@ -82,15 +82,15 @@ extern "C" { return F_true; } - // Syriac: U+0730 to U+074A. - if (character >= 0xdcb00000 && character <= 0xdd8a0000) { + // Syriac: U+0730 to U+073F. + if (character >= 0xdcb00000 && character <= 0xdcbf0000) { return F_true; } } else if (macro_f_utf_char_t_to_char_1(character) == 0xdd) { - // Syriac: U+0730 to U+074A. - if (character >= 0xdcb00000 && character <= 0xdd8a0000) { + // Syriac: U+0740 to U+074A. + if (character >= 0xdd800000 && character <= 0xdd8a0000) { return F_true; } }