aboutsummaryrefslogtreecommitdiffhomepage
path: root/expand.h
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2005-12-08 00:43:07 +1000
committerGravatar axel <axel@liljencrantz.se>2005-12-08 00:43:07 +1000
commit8b4637e90022567ba658352bc32bcfe212413289 (patch)
treeac2b195d49986ab3e633b7bd361213917b65ee33 /expand.h
parentab13c4caadc87a23b327b61ada7bd495a8ef9ce1 (diff)
Insert boundary token at quotes, makes things like $foo"bar" work right
darcs-hash:20051207144307-ac50b-a708fa43b196f435efdcb1bfac17ce592cdb4533.gz
Diffstat (limited to 'expand.h')
-rw-r--r--expand.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/expand.h b/expand.h
index ae510728..02211920 100644
--- a/expand.h
+++ b/expand.h
@@ -81,6 +81,11 @@ enum
/** Character representing separation between two bracket elements */
BRACKET_SEP,
+ /**
+ Separate subtokens in a token with this character.
+ */
+ INTERNAL_SEPARATOR,
+
}
;
@@ -107,11 +112,6 @@ enum
/** String containing the character for separating two array elements */
#define ARRAY_SEP_STR L"\x1e"
-/**
- Separate subtokens in a token with this character.
-*/
-#define INTERNAL_SEPARATOR 0xfffffff0
-
/**