aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-09-06 15:01:27 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-09-06 15:01:27 -0400
commit9581231408ceb1e8c275217023ec1c17b3a14924 (patch)
tree9d4593d39cb9f3db023ab063f1735b3de5a4c88c
parentfba8c90687f92b609a902622f5b60203e87ec067 (diff)
Remove unused 'import' keyword
-rw-r--r--parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.c b/parse.c
index 9550cc68..e7f2d19f 100644
--- a/parse.c
+++ b/parse.c
@@ -57,7 +57,7 @@ int op_tightness[] = {
static const char *keywords[] = {
"yes", "xor", "while", "when", "use", "struct", "stop", "skip", "return",
- "or", "not", "no", "mod1", "mod", "pass", "lang", "import", "inline", "in", "if",
+ "or", "not", "no", "mod1", "mod", "pass", "lang", "inline", "in", "if",
"func", "for", "extern", "enum", "else", "do", "defer", "and", "_min_", "_max_",
NULL,
};