aboutsummaryrefslogtreecommitdiff
path: root/interpreter/lex.c
diff options
context:
space:
mode:
Diffstat (limited to 'interpreter/lex.c')
-rw-r--r--interpreter/lex.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/interpreter/lex.c b/interpreter/lex.c
index 8946252..94820ca 100644
--- a/interpreter/lex.c
+++ b/interpreter/lex.c
@@ -64,7 +64,6 @@ token_list* lex(token_list* list, char* input) {
case ']': list->elem.kind = TOKEN_CLOSE_SQ; break;
case '=': list->elem.kind = TOKEN_EQUALS; break;
case ',': list->elem.kind = TOKEN_COMMA; break;
- case '!': list->elem.kind = TOKEN_STRICT; break;
default:
if (input[0] == '/' && input[1] == '/') {
while (input && input[0] != '\n') input++;