]> Kevux Git Server - fll/commitdiff
Bugfix: Remove extra zero from hex-digit.
authorKevin Day <thekevinday@gmail.com>
Mon, 23 May 2022 17:20:49 +0000 (12:20 -0500)
committerKevin Day <thekevinday@gmail.com>
Mon, 23 May 2022 17:20:57 +0000 (12:20 -0500)
This extra digit results in an always true boolean logic.

level_0/f_utf/c/private-utf.c

index 5e4395550d45780a502b23463df8c6d547b81aa2..7778a6b8c37358945bfd0ce16fdaa7afbadc7cd7 100644 (file)
@@ -392,7 +392,7 @@ extern "C" {
         }
 
         // Gurmukhi: U+0A01 to U+0A03.
-        if (character >= 0xe0a88100 && character <= 0xe0a882300) {
+        if (character >= 0xe0a88100 && character <= 0xe0a88230) {
           return F_true;
         }