diff --git a/42sh/src/parser/ft_parse.c b/42sh/src/parser/ft_parse.c index c64ce52b..57a2270c 100644 --- a/42sh/src/parser/ft_parse.c +++ b/42sh/src/parser/ft_parse.c @@ -6,7 +6,7 @@ /* By: ariard +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2017/03/11 16:17:38 by ariard #+# #+# */ -/* Updated: 2017/03/29 14:27:02 by ariard ### ########.fr */ +/* Updated: 2017/03/29 15:31:31 by ariard ### ########.fr */ /* */ /* ************************************************************************** */ @@ -40,7 +40,6 @@ int ft_parse(t_btree **ast, t_list **token, t_parser *parser) while (parser && token && *token) { produce_sym(&parser->stack, parser->new_sym, token); - DG("produce sym %s", read_state(*parser->new_sym)); if (parser->new_sym && eval_sym(&parser->stack, *parser->new_sym)) return ((parser->state = ERROR)); if (aggregate_sym(&parser->stack, parser->new_sym, &parser->state))