Skip to content

Commit

Permalink
[19_7] Correct the unicode range for greek
Browse files Browse the repository at this point in the history
  • Loading branch information
da-liii authored Nov 23, 2024
1 parent 7b3d95c commit b9102a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lolly/data/unicode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ string
unicode_get_range (int code) {
if (code <= 0x7f) return "ascii";
else if (code >= 0x80 && code <= 0x37f) return "latin";
else if (code >= 0x380 && code <= 0x3ff) return "greek";
else if (code >= 0x370 && code <= 0x3ff) return "greek";
else if (code >= 0x400 && code <= 0x4ff) return "cyrillic";
else if (code >= 0x2460 && code <= 0x24ff) return "enclosed_alphanumerics";
else if (code >= 0x3000 && code <= 0x303f) return "cjk";
Expand Down

0 comments on commit b9102a5

Please sign in to comment.