diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-12-04 13:39:07 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-12-04 13:39:07 (GMT) |
commit | ae09e66da466ea68e269fc388798ca6ce2cd1c4c (patch) | |
tree | b1ec9c2c65b23f6bffcd3c20ce89844c2d05ad8c /generic/tclParse.h | |
parent | 52e59e2a0076ff3e9487ab314fc9617772ef9596 (diff) | |
download | tcl-ae09e66da466ea68e269fc388798ca6ce2cd1c4c.zip tcl-ae09e66da466ea68e269fc388798ca6ce2cd1c4c.tar.gz tcl-ae09e66da466ea68e269fc388798ca6ce2cd1c4c.tar.bz2 |
MODULE_SCOPE symbol names are suppoted to start with 'tcl' (data) or 'Tcl' (code)
Diffstat (limited to 'generic/tclParse.h')
-rw-r--r-- | generic/tclParse.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclParse.h b/generic/tclParse.h index be1ab15..20c609c 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) (charTypeTable+128)[(int)(c)] +#define CHAR_TYPE(c) (tclCharTypeTable+128)[(int)(c)] -MODULE_SCOPE const char charTypeTable[]; +MODULE_SCOPE const char tclCharTypeTable[]; |