diff options
author | Chet Ramey <chet.ramey@case.edu> | 2023-05-15 13:30:18 -0400 |
---|---|---|
committer | Chet Ramey <chet.ramey@case.edu> | 2023-05-15 13:30:18 -0400 |
commit | e44e3d50dee26d12927baca188ad2a44a0135173 (patch) | |
tree | e4ff8c47078cdd7b23901205f7e1db26cd1f2242 /subst.h | |
parent | c375f8f45f4882db3098f9b54a19b75d2b176537 (diff) | |
download | bash-devel.tar.gz |
complete initial implementation of nofork command substitution (${ command; })devel
Diffstat (limited to 'subst.h')
-rw-r--r-- | subst.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -355,6 +355,7 @@ extern int inherit_errexit; extern pid_t last_command_subst_pid; extern int last_command_subst_status; +extern int executing_funsub; /* Evaluates to 1 if C is a character in $IFS. */ #define isifs(c) (ifs_cmap[(unsigned char)(c)] != 0) |