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 | 6df8a636f8a85c229a44ad096cd549f1fcb3dca0 (patch) | |
tree | 4b61c3988091bd61b08d0d45d9ea597aa08654b6 /generic/tclCompile.c | |
parent | 72dd32a3ca487853828c6a87d2e34d16cf7a2b36 (diff) | |
download | tcl-6df8a636f8a85c229a44ad096cd549f1fcb3dca0.zip tcl-6df8a636f8a85c229a44ad096cd549f1fcb3dca0.tar.gz tcl-6df8a636f8a85c229a44ad096cd549f1fcb3dca0.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 |