diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-12-15 11:13:32 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-12-15 11:13:32 (GMT) |
commit | 62b1f5c63defe1dc95bf58b163ef0aa0fd1fa699 (patch) | |
tree | 4b61c3988091bd61b08d0d45d9ea597aa08654b6 /generic/tclCompile.h | |
parent | df25840e9998ccae184ac0e650ea1857d1da6634 (diff) | |
download | tcl-62b1f5c63defe1dc95bf58b163ef0aa0fd1fa699.zip tcl-62b1f5c63defe1dc95bf58b163ef0aa0fd1fa699.tar.gz tcl-62b1f5c63defe1dc95bf58b163ef0aa0fd1fa699.tar.bz2 |
make some MODULE_SCOPE symbols static
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index 8811187..b5bfab1 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -995,12 +995,6 @@ typedef struct ForeachInfo { * LAST FIELD IN THE STRUCTURE! */ } ForeachInfo; -MODULE_SCOPE const AuxDataType tclForeachInfoType; -MODULE_SCOPE const AuxDataType tclNewForeachInfoType; - -#define FOREACHINFO(envPtr, index) \ - ((ForeachInfo*)((envPtr)->auxDataArrayPtr[TclGetUInt4AtPtr(index)].clientData)) - /* * Structure used to hold information about a switch command that is needed * during program execution. These structures are stored in CompileEnv and @@ -1033,11 +1027,6 @@ typedef struct { * STRUCTURE. */ } DictUpdateInfo; -MODULE_SCOPE const AuxDataType tclDictUpdateInfoType; - -#define DICTUPDATEINFO(envPtr, index) \ - ((DictUpdateInfo*)((envPtr)->auxDataArrayPtr[TclGetUInt4AtPtr(index)].clientData)) - /* * ClientData type used by the math operator commands. */ |