Skip to content

Commit b9102a5

Browse files
authored
[19_7] Correct the unicode range for greek
1 parent 7b3d95c commit b9102a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lolly/data/unicode.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ string
9999
unicode_get_range (int code) {
100100
if (code <= 0x7f) return "ascii";
101101
else if (code >= 0x80 && code <= 0x37f) return "latin";
102-
else if (code >= 0x380 && code <= 0x3ff) return "greek";
102+
else if (code >= 0x370 && code <= 0x3ff) return "greek";
103103
else if (code >= 0x400 && code <= 0x4ff) return "cyrillic";
104104
else if (code >= 0x2460 && code <= 0x24ff) return "enclosed_alphanumerics";
105105
else if (code >= 0x3000 && code <= 0x303f) return "cjk";

0 commit comments

Comments
 (0)