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.c | |
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.c')
-rw-r--r-- | generic/tclCompile.c | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c index 6c4734d..6598829 100644 --- a/generic/tclCompile.c +++ b/generic/tclCompile.c @@ -4214,39 +4214,6 @@ TclGetInstructionTable(void) /* *---------------------------------------------------------------------- * - * TclGetAuxDataType -- - * - * This procedure looks up an Auxdata type by name. - * - * Results: - * If an AuxData type with name matching "typeName" is found, a pointer - * to its AuxDataType structure is returned; otherwise, NULL is returned. - * - * Side effects: - * None. - * - *---------------------------------------------------------------------- - */ - -const AuxDataType * -TclGetAuxDataType( - const char *typeName) /* Name of AuxData type to look up. */ -{ - if (!strcmp(typeName, tclForeachInfoType.name)) { - return &tclForeachInfoType; - } else if (!strcmp(typeName, tclNewForeachInfoType.name)) { - return &tclNewForeachInfoType; - } else if (!strcmp(typeName, tclDictUpdateInfoType.name)) { - return &tclDictUpdateInfoType; - } else if (!strcmp(typeName, tclJumptableInfoType.name)) { - return &tclJumptableInfoType; - } - return NULL; -} - -/* - *---------------------------------------------------------------------- - * * GetCmdLocEncodingSize -- * * Computes the total number of bytes needed to encode the command |