diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-10-06 17:07:46 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-10-06 17:07:46 +0200 |
| commit | fc862343cc5d0c305811fe23311084ae3702ed42 (patch) | |
| tree | 6417bd07fd58dab95eea3193acfd5230f0ff57f1 /include | |
| parent | 54394620893f7245c7697a57d724d430d06b57d1 (diff) | |
| download | minishell-fc862343cc5d0c305811fe23311084ae3702ed42.tar.gz minishell-fc862343cc5d0c305811fe23311084ae3702ed42.tar.bz2 minishell-fc862343cc5d0c305811fe23311084ae3702ed42.zip | |
Fixing error status on mac, Fixing parser pipeline segfault, Fixing pipeline not closing read-end
Diffstat (limited to 'include')
| -rw-r--r-- | include/lexer.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 <nahaddac@student.42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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, }; /* |
