aboutsummaryrefslogtreecommitdiff
path: root/src/parse/utils.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-09-21 18:16:32 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-09-21 18:16:32 -0400
commit7e3e245f6809946ea06ef1998bcabb7e0902fbd7 (patch)
tree67c06d75ecff021cd70073f8a7da278cfe7f6410 /src/parse/utils.c
parent7198afcfec38f8f0cc82e093567e2b098a42970f (diff)
Deprecate `defer`
Diffstat (limited to 'src/parse/utils.c')
-rw-r--r--src/parse/utils.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/parse/utils.c b/src/parse/utils.c
index 2048a3ff..b45e388e 100644
--- a/src/parse/utils.c
+++ b/src/parse/utils.c
@@ -12,10 +12,9 @@
#include "utils.h"
static const char *keywords[] = {
- "C_code", "_max_", "_min_", "and", "assert", "break", "continue", "defer", "deserialize", "do",
- "else", "enum", "extend", "for", "func", "if", "in", "lang", "mod", "mod1",
- "no", "none", "not", "or", "pass", "return", "skip", "skip", "stop", "struct",
- "then", "unless", "use", "when", "while", "xor", "yes",
+ "C_code", "_max_", "_min_", "and", "assert", "break", "continue", "deserialize", "do", "else", "enum", "extend",
+ "for", "func", "if", "in", "lang", "mod", "mod1", "no", "none", "not", "or", "pass",
+ "return", "skip", "skip", "stop", "struct", "then", "unless", "use", "when", "while", "xor", "yes",
};
CONSTFUNC bool is_keyword(const char *word) {