diff options
Diffstat (limited to 'generic/tclParse.h')
-rw-r--r-- | generic/tclParse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclParse.h b/generic/tclParse.h index 20c609c..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)[(int)(c)] +#define CHAR_TYPE(c) tclCharTypeTable[(unsigned char)(c)] MODULE_SCOPE const char tclCharTypeTable[]; |