diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | generic/tclCompile.c | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2011-12-13 Andreas Kupries <andreask@activestate.com> + + * generic/tclCompile.c (TclInitAuxDataTypeTable): Extended to + register the DictUpdateInfo structure as an AuxData type. For use + by tbcload, tclcompiler. + 2011-12-11 Jan Nijtmans <nijtmans@users.sf.net> * generic/regc_locale.c: [Bug 3457031]: Some Unicode 6.0 chars not diff --git a/generic/tclCompile.c b/generic/tclCompile.c index 97e2a8a..826e49c 100644 --- a/generic/tclCompile.c +++ b/generic/tclCompile.c @@ -3572,6 +3572,7 @@ TclInitAuxDataTypeTable(void) TclRegisterAuxDataType(&tclForeachInfoType); TclRegisterAuxDataType(&tclJumptableInfoType); + TclRegisterAuxDataType(&tclDictUpdateInfoType); } /* |