aboutsummaryrefslogtreecommitdiff
path: root/interpreter/lex.c
diff options
context:
space:
mode:
Diffstat (limited to 'interpreter/lex.c')
-rw-r--r--interpreter/lex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/interpreter/lex.c b/interpreter/lex.c
index 8208248..0d93bea 100644
--- a/interpreter/lex.c
+++ b/interpreter/lex.c
@@ -68,8 +68,8 @@ token_list* lex(token_list* list, char* input) {
is_space_char(input[4])) {
list->elem.kind = TOKEN_CODE;
input += 4;
+ break;
}
- break;
default:
if (is_int_char(*input)) {