summaryrefslogtreecommitdiff
path: root/uscript/lex.c
diff options
context:
space:
mode:
authoriamcheeseman <[email protected]>2026-04-14 17:09:40 -0400
committeriamcheeseman <[email protected]>2026-04-14 17:09:40 -0400
commitbcd6021b752ca4edff05448e7991c5f2eb9c0c55 (patch)
tree1c3fdc1555488b8df049e5cf63b3432f5e89ed90 /uscript/lex.c
parenta99ea432154b1737490c887f3004024f01c254b1 (diff)
microscript: remove mod keyword
Diffstat (limited to 'uscript/lex.c')
-rw-r--r--uscript/lex.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/uscript/lex.c b/uscript/lex.c
index b89537d..a25bb86 100644
--- a/uscript/lex.c
+++ b/uscript/lex.c
@@ -173,8 +173,6 @@ struct token ident_token(struct lexer *lex)
kind = TOKEN_ELSE;
else if (match_kw(lex, "loop"))
kind = TOKEN_LOOP;
- else if (match_kw(lex, "mod"))
- kind = TOKEN_MOD;
else if (match_kw(lex, "true"))
kind = TOKEN_TRUE;
else if (match_kw(lex, "false"))