]> git.ipfire.org Git - thirdparty/bash.git/blobdiff - command.h
commit bash-20150619 snapshot
[thirdparty/bash.git] / command.h
index 735b8bfa6be804e9a7e9c4191de0709484ef23f3..dac6b85ad6f9f333f6e29832d50336caa02bbbbf 100644 (file)
--- a/command.h
+++ b/command.h
@@ -100,7 +100,6 @@ enum command_type { cm_for, cm_case, cm_while, cm_if, cm_simple, cm_select,
 #define W_ARRAYIND     0x1000000       /* word is an array index being expanded */
 #define W_ASSNGLOBAL   0x2000000       /* word is a global assignment to declare (declare/typeset -g) */
 #define W_NOBRACE      0x4000000       /* Don't perform brace expansion */
-#define W_ASSIGNINT    0x8000000       /* word is an integer assignment to declare */
 
 /* Possible values for subshell_environment */
 #define SUBSHELL_ASYNC 0x01    /* subshell caused by `command &' */
@@ -175,6 +174,7 @@ typedef struct element {
 #define CMD_COMMAND_BUILTIN 0x0800 /* command executed by `command' builtin */
 #define CMD_COPROC_SUBSHELL 0x1000
 #define CMD_LASTPIPE       0x2000
+#define CMD_STDPATH        0x4000      /* use standard path for command lookup */
 
 /* What a command looks like. */
 typedef struct command {
@@ -299,7 +299,7 @@ typedef struct arith_com {
 } ARITH_COM;
 #endif /* DPAREN_ARITHMETIC */
 
-/* The conditional command, [[...]].  This is a binary tree -- we slippped
+/* The conditional command, [[...]].  This is a binary tree -- we slipped
    a recursive-descent parser into the YACC grammar to parse it. */
 #define COND_AND       1
 #define COND_OR                2