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, 1 insertions, 1 deletions
diff --git a/generic/tclParse.h b/generic/tclParse.h
index 9247602..5f75c9a 100644
--- a/generic/tclParse.h
+++ b/generic/tclParse.h
@@ -12,6 +12,6 @@
#define TYPE_CLOSE_BRACK 0x20
#define TYPE_BRACE 0x40
-#define CHAR_TYPE(c) (tclCharTypeTable+128)[(unsigned char)(c)]
+#define CHAR_TYPE(c) tclCharTypeTable[(unsigned char)(c)]
MODULE_SCOPE const char tclCharTypeTable[];