aboutsummaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2021-07-20 01:03:46 -0700
committerBruce Hill <bruce@bruce-hill.com>2021-07-20 01:03:46 -0700
commitf5b9acc05c6b14c3cc7a41d38f86aed4edd68a76 (patch)
tree349cb3a1fda4ebad1fd68bdb2b866c80f8abf7a0 /utf8.c
parent8c351922f4543a0883b19f29144a0549142f1c53 (diff)
Added const
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utf8.c b/utf8.c
index 2ae6d1d..820b79c 100644
--- a/utf8.c
+++ b/utf8.c
@@ -100,7 +100,7 @@ static const uint32_t XID_Start[][2] = {
{0x2B820,0x2CEA1}, {0x2CEB0,0x2EBE0}, {0x2F800,0x2FA1D}, {0x30000,0x3134A},
};
-static uint32_t XID_Continue_only[][2] = {
+static const uint32_t XID_Continue_only[][2] = {
{0x0030,0x0039}, {0x005F,0x005F}, {0x00B7,0x00B7}, {0x0300,0x036F}, {0x0387,0x0387}, {0x0483,0x0487}, {0x0591,0x05BD}, {0x05BF,0x05BF},
{0x05C1,0x05C2}, {0x05C4,0x05C5}, {0x05C7,0x05C7}, {0x0610,0x061A}, {0x064B,0x065F}, {0x0660,0x0669}, {0x0670,0x0670}, {0x06D6,0x06DC},
{0x06DF,0x06E4}, {0x06E7,0x06E8}, {0x06EA,0x06ED}, {0x06F0,0x06F9}, {0x0711,0x0711}, {0x0730,0x074A}, {0x07A6,0x07B0}, {0x07C0,0x07C9},