From fc862343cc5d0c305811fe23311084ae3702ed42 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Tue, 6 Oct 2020 17:07:46 +0200 Subject: Fixing error status on mac, Fixing parser pipeline segfault, Fixing pipeline not closing read-end --- include/lexer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/lexer.h') diff --git a/include/lexer.h b/include/lexer.h index 30d5ae2..82b4d1d 100644 --- a/include/lexer.h +++ b/include/lexer.h @@ -6,7 +6,7 @@ /* By: nahaddac +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/06/19 10:51:26 by nahaddac #+# #+# */ -/* Updated: 2020/09/15 18:24:12 by charles ### ########.fr */ +/* Updated: 2020/10/06 16:21:01 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -61,7 +61,7 @@ enum e_tok TAG_IS_STR = TAG_STR | TAG_STR_SINGLE | TAG_STR_DOUBLE, TAG_IS_REDIR = TAG_REDIR_IN | TAG_REDIR_OUT | TAG_REDIR_APPEND, - TAG_IS_SEP = TAG_AND | TAG_END | TAG_OR | TAG_PIPE, + TAG_IS_SEP = TAG_AND | TAG_END | TAG_OR, }; /* -- cgit