aboutsummaryrefslogtreecommitdiff
path: root/src/include/syntax.h
diff options
context:
space:
mode:
authorc2024-03-18 21:27:42 -0400
committerc2024-03-18 21:27:42 -0400
commit53d5c419bdfaa58c2cf7c30e51e4515f66fa85a1 (patch)
treea3c7ac2a0eb999a7a2770268df356c780e278161 /src/include/syntax.h
parentaaf2ae7693e2b48358f7d3007aca9f0cb5f4950f (diff)
Fixed bugs.
Keywords with numbers in them were being read as lints, forgot to add numbers to allowed chars somehow.
Diffstat (limited to 'src/include/syntax.h')
-rw-r--r--src/include/syntax.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/syntax.h b/src/include/syntax.h
index 2938178..2645ca4 100644
--- a/src/include/syntax.h
+++ b/src/include/syntax.h
@@ -22,6 +22,6 @@
#define SYNTAX_ESC '\\'
/* Characters that can appear in keywords. */
-#define SYNTAX_KWD_CHARS "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_~|&+-/*<>=%^$@?"
+#define SYNTAX_KWD_CHARS "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_~|&+-/*<>=%^$@?0123456789"
#endif