From 1d455c5b8ba3ecd7fa0b0a5a6718bc6cd7fbd8d9 Mon Sep 17 00:00:00 2001 From: nass1pro Date: Sun, 14 Jun 2020 09:39:13 +0200 Subject: Change LTAG -> TAG in lexer.h --- include/lexer.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'include/lexer.h') diff --git a/include/lexer.h b/include/lexer.h index 90f9353..e2abe28 100644 --- a/include/lexer.h +++ b/include/lexer.h @@ -8,19 +8,19 @@ enum e_token_tag { - LTAG_AND = 1 << 0, - LTAG_END = 1 << 1, - LTAG_OR = 1 << 2, - LTAG_PIPE = 1 << 3, - LTAG_REDIR_IN = 1 << 4, - LTAG_REDIR_OUT = 1 << 5, - LTAG_REDIR_APPEND = 1 << 6, - LTAG_PARENT_OPEN = 1 << 7, - LTAG_PARENT_CLOSE = 1 << 8, - LTAG_STR = 1 << 9, - LTAG_STR_DOUBLE = 1 << 10, - LTAG_STR_SINGLE = 1 << 11, - LTAG_STICK = 1 << 12, + TAG_AND = 1 << 0, + TAG_END = 1 << 1, + TAG_OR = 1 << 2, + TAG_PIPE = 1 << 3, + TAG_REDIR_IN = 1 << 4, + TAG_REDIR_OUT = 1 << 5, + TAG_REDIR_APPEND = 1 << 6, + TAG_PARENT_OPEN = 1 << 7, + TAG_PARENT_CLOSE = 1 << 8, + TAG_STR = 1 << 9, + TAG_STR_DOUBLE = 1 << 10, + TAG_STR_SINGLE = 1 << 11, + TAG_STICK = 1 << 12, }; typedef struct -- cgit