commit bash-20210305 snapshot

This commit is contained in:
Chet Ramey
2021-03-10 10:35:28 -05:00
parent b3b5f4bb33
commit 11bf534f36
16 changed files with 416 additions and 196 deletions
+2 -1
View File
@@ -167,13 +167,13 @@ extern struct user_info current_user;
typedef struct _sh_parser_state_t
{
/* parsing state */
int parser_state;
int *token_state;
char *token;
int token_buffer_size;
int eof_token;
/* input line state -- line number saved elsewhere */
int input_line_terminator;
@@ -206,6 +206,7 @@ typedef struct _sh_parser_state_t
int here_doc_first_line;
/* structures affecting the parser */
void *pushed_strings;
REDIRECT *redir_stack[HEREDOC_MAX];
} sh_parser_state_t;