diff options
author | Chet Ramey <chet.ramey@case.edu> | 2012-05-07 16:22:49 -0400 |
---|---|---|
committer | Chet Ramey <chet.ramey@case.edu> | 2012-05-07 16:22:49 -0400 |
commit | 6d41b71587a48f90a555846477b2ff6a976d766d (patch) | |
tree | 54cb661d48bc28bec5ec07dca99501519115fd29 /command.h | |
parent | 6c19148d3350504ff170ca6fabc9b120ad3f3378 (diff) | |
download | android_external_bash-6d41b71587a48f90a555846477b2ff6a976d766d.tar.gz android_external_bash-6d41b71587a48f90a555846477b2ff6a976d766d.tar.bz2 android_external_bash-6d41b71587a48f90a555846477b2ff6a976d766d.zip |
Bash-4.2 patch 25
Diffstat (limited to 'command.h')
-rw-r--r-- | command.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -97,6 +97,7 @@ enum command_type { cm_for, cm_case, cm_while, cm_if, cm_simple, cm_select, #define W_HASCTLESC 0x200000 /* word contains literal CTLESC characters */ #define W_ASSIGNASSOC 0x400000 /* word looks like associative array assignment */ #define W_ARRAYIND 0x800000 /* word is an array index being expanded */ +#define W_ASSNGLOBAL 0x1000000 /* word is a global assignment to declare (declare/typeset -g) */ /* Possible values for subshell_environment */ #define SUBSHELL_ASYNC 0x01 /* subshell caused by `command &' */ |