diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-06-15 13:12:34 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-06-15 13:12:34 +0200 |
| commit | b8623ff168880845c745da62f7e9a840f0541809 (patch) | |
| tree | 23ca8f41c6bdeb5f4fb3a229ee03a7f76c931eb0 /include/lexer.h | |
| parent | 11a719bab26b3ccccbd219decab2d0cf77021004 (diff) | |
| parent | a7dae7d30b7087bcd9972792a2ee1248e081cfce (diff) | |
| download | minishell-b8623ff168880845c745da62f7e9a840f0541809.tar.gz minishell-b8623ff168880845c745da62f7e9a840f0541809.tar.bz2 minishell-b8623ff168880845c745da62f7e9a840f0541809.zip | |
Merge branch 'parser'
Diffstat (limited to 'include/lexer.h')
| -rw-r--r-- | include/lexer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lexer.h b/include/lexer.h index 3acffb0..5886035 100644 --- a/include/lexer.h +++ b/include/lexer.h @@ -23,7 +23,7 @@ enum e_token_tag TAG_STICK = 1 << 12, 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_REDIR = TAG_REDIR_IN | TAG_REDIR_OUT | TAG_REDIR_APPEND, }; typedef struct |
