diff options
Diffstat (limited to 'core/utf8.odin')
| -rw-r--r-- | core/utf8.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/utf8.odin b/core/utf8.odin index 7df548455..71358f68d 100644 --- a/core/utf8.odin +++ b/core/utf8.odin @@ -28,9 +28,9 @@ RUNE3_MAX :: 1<<16 - 1; LOCB :: 0b1000_0000; HICB :: 0b1011_1111; -AcceptRange :: struct { lo, hi: u8 } +Accept_Range :: struct {lo, hi: u8}; -accept_ranges := [5]AcceptRange{ +accept_ranges := [5]Accept_Range{ {0x80, 0xbf}, {0xa0, 0xbf}, {0x80, 0x9f}, |