From 0ea301f3e8d7ef2efade9fe36d44f4a14353243d Mon Sep 17 00:00:00 2001 From: Antoine Riard Date: Fri, 17 Mar 2017 23:22:59 +0100 Subject: [PATCH] compile ok with math --- 42sh/src/main/main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/42sh/src/main/main.c b/42sh/src/main/main.c index 6191425b..ea5006dc 100644 --- a/42sh/src/main/main.c +++ b/42sh/src/main/main.c @@ -88,8 +88,6 @@ static int handle_instruction(t_list **token, t_btree **ast) { if ((ret = do_readline_routine(&stream)) > 0) return (ret); - if (do_lexer_routine(stream) > 0) - continue ; if (do_lexer_routine(token, stream) > 0) continue ; if (do_parser_routine(token, ast) > 0)