aboutsummaryrefslogtreecommitdiff
path: root/include/wordsplit.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/wordsplit.h')
-rw-r--r--include/wordsplit.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/include/wordsplit.h b/include/wordsplit.h
index 3a7ab25..a175275 100644
--- a/include/wordsplit.h
+++ b/include/wordsplit.h
@@ -201,9 +201,7 @@ struct wordsplit
201#define WRDSO_FAILGLOB 0x00000002 201#define WRDSO_FAILGLOB 0x00000002
202/* Allow a leading period to be matched by metacharacters. */ 202/* Allow a leading period to be matched by metacharacters. */
203#define WRDSO_DOTGLOB 0x00000004 203#define WRDSO_DOTGLOB 0x00000004
204#if 0 /* Unused value */ 204/* Unused value: 0x00000008 */
205#define WRDSO_ARGV 0x00000008
206#endif
207/* Keep backslash in unrecognized escape sequences in words */ 205/* Keep backslash in unrecognized escape sequences in words */
208#define WRDSO_BSKEEP_WORD 0x00000010 206#define WRDSO_BSKEEP_WORD 0x00000010
209/* Handle octal escapes in words */ 207/* Handle octal escapes in words */
@@ -220,6 +218,13 @@ struct wordsplit
220#define WRDSO_OESC_QUOTE 0x00000200 218#define WRDSO_OESC_QUOTE 0x00000200
221/* Handle hex escapes in quoted strings */ 219/* Handle hex escapes in quoted strings */
222#define WRDSO_XESC_QUOTE 0x00000400 220#define WRDSO_XESC_QUOTE 0x00000400
221/* Unused: 0x00000800 */
222/* Don't split variable references, even if they contain whitespace
223 (e.g. ${VAR:-foo bar}) */
224#define WRDSO_NOVARSPLIT 0x00001000
225/* Don't split commands, even containing whitespace, e.g.
226 $(echo foo bar) */
227#define WRDSO_NOCMDSPLIT 0x00002000
223 228
224#define WRDSO_BSKEEP WRDSO_BSKEEP_WORD 229#define WRDSO_BSKEEP WRDSO_BSKEEP_WORD
225#define WRDSO_OESC WRDSO_OESC_WORD 230#define WRDSO_OESC WRDSO_OESC_WORD

Return to:

Send suggestions and report system problems to the System administrator.