diff options
author | andreask <andreask> | 2014-12-01 20:17:04 (GMT) |
---|---|---|
committer | andreask <andreask> | 2014-12-01 20:17:04 (GMT) |
commit | a03c9da848ffd7e60101c43321e05f79635f8cef (patch) | |
tree | 1858e85ab41068f2b655adfb946d7419325364f8 /generic/tclCompile.c | |
parent | 33eb2510ff53b7fd3b32ea1c84b4ef85d00c10f8 (diff) | |
download | tcl-a03c9da848ffd7e60101c43321e05f79635f8cef.zip tcl-a03c9da848ffd7e60101c43321e05f79635f8cef.tar.gz tcl-a03c9da848ffd7e60101c43321e05f79635f8cef.tar.bz2 |
Fix missing export of the "NewForeachInfoType" AuxData structure for tbcload/tclcompiler packages.
Diffstat (limited to 'generic/tclCompile.c')
-rw-r--r-- | generic/tclCompile.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c index 3736498..0f4dfaf 100644 --- a/generic/tclCompile.c +++ b/generic/tclCompile.c @@ -4342,10 +4342,11 @@ TclInitAuxDataTypeTable(void) Tcl_InitHashTable(&auxDataTypeTable, TCL_STRING_KEYS); /* - * There are only three AuxData types at this time, so register them here. + * There are only four AuxData types at this time, so register them here. */ RegisterAuxDataType(&tclForeachInfoType); + RegisterAuxDataType(&tclNewForeachInfoType); RegisterAuxDataType(&tclJumptableInfoType); RegisterAuxDataType(&tclDictUpdateInfoType); } |