summaryrefslogtreecommitdiffstats
path: root/generic/tclParse.h
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclParse.h')
-rw-r--r--generic/tclParse.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/generic/tclParse.h b/generic/tclParse.h
index 20c609c..a836147 100644
--- a/generic/tclParse.h
+++ b/generic/tclParse.h
@@ -11,6 +11,8 @@
#define TYPE_CLOSE_PAREN 0x10
#define TYPE_CLOSE_BRACK 0x20
#define TYPE_BRACE 0x40
+#define TYPE_OPEN_PAREN 0x80
+#define TYPE_BAD_ARRAY_INDEX (TYPE_OPEN_PAREN|TYPE_CLOSE_PAREN|TYPE_QUOTE|TYPE_BRACE)
#define CHAR_TYPE(c) (tclCharTypeTable+128)[(int)(c)]