From bcc627a31a6652550be179d1602aae9ccd8db596 Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 15 Jul 2020 18:33:37 +0200 Subject: Added cmd local/exported environment variable (WIP, still a few edge cases) --- src/parse/parse_error.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/parse') diff --git a/src/parse/parse_error.c b/src/parse/parse_error.c index 1116a88..6df86e2 100644 --- a/src/parse/parse_error.c +++ b/src/parse/parse_error.c @@ -6,7 +6,7 @@ /* By: nahaddac +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/06/18 15:09:48 by nahaddac #+# #+# */ -/* Updated: 2020/07/14 11:49:48 by nahaddac ### ########.fr */ +/* Updated: 2020/07/15 18:31:51 by charles ### ########.fr */ /* */ /* ************************************************************************** */ @@ -51,10 +51,10 @@ t_token *error_syntax_simple(t_ftlst *in) { t_token *tk; size_t i; - t_ftlst *first; + /* t_ftlst *first; */ tk = in->data; - first = in; + /* first = in; */ if(tk->tag & TAG_IS_SEP || (tk->tag & TAG_IS_REDIR)) { if (out_error_first(tk)) -- cgit