diff options
author | Camil Staps | 2016-09-24 14:57:17 +0200 |
---|---|---|
committer | Camil Staps | 2016-09-24 14:57:49 +0200 |
commit | 11a550753ae31714fb4618c2cf6d2acd5e7ae712 (patch) | |
tree | 6e053f97c3ecbb34e8b6b537934a5e96bae9c227 /interpreter/lex.c | |
parent | Fix memory leak with code (diff) |
Removed strictness
Diffstat (limited to 'interpreter/lex.c')
-rw-r--r-- | interpreter/lex.c | 1 |
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++; |