aboutsummaryrefslogtreecommitdiff
path: root/interpreter/lex.c
diff options
context:
space:
mode:
authorCamil Staps2016-09-24 14:57:17 +0200
committerCamil Staps2016-09-24 14:57:49 +0200
commit11a550753ae31714fb4618c2cf6d2acd5e7ae712 (patch)
tree6e053f97c3ecbb34e8b6b537934a5e96bae9c227 /interpreter/lex.c
parentFix memory leak with code (diff)
Removed strictness
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++;