Bash-5.2 patch 7: fixes for alias expansion inside command substitution in POSIX mode

This commit is contained in:
Chet Ramey
2022-11-07 11:42:44 -05:00
parent 8c9524f9c4
commit 6ddc9cf242
6 changed files with 44 additions and 12 deletions
+1
View File
@@ -114,6 +114,7 @@ enum command_type { cm_for, cm_case, cm_while, cm_if, cm_simple, cm_select,
#define PF_COMPLETE 0x10 /* same as W_COMPLETE, sets SX_COMPLETE */
#define PF_EXPANDRHS 0x20 /* same as W_EXPANDRHS */
#define PF_ALLINDS 0x40 /* array, act as if [@] was supplied */
#define PF_BACKQUOTE 0x80 /* differentiate `` from $() for command_substitute */
/* Possible values for subshell_environment */
#define SUBSHELL_ASYNC 0x01 /* subshell caused by `command &' */