summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandreask <andreask>2011-12-13 17:45:39 (GMT)
committerandreask <andreask>2011-12-13 17:45:39 (GMT)
commit9c27c0e59b0afaae14af4b0a18f128744ea594b1 (patch)
tree3a2d3d18629117a4e580198687211271c229ebe0
parent83b0f547dde81282eeb1ad61fdebc365c1003746 (diff)
downloadtcl-9c27c0e59b0afaae14af4b0a18f128744ea594b1.zip
tcl-9c27c0e59b0afaae14af4b0a18f128744ea594b1.tar.gz
tcl-9c27c0e59b0afaae14af4b0a18f128744ea594b1.tar.bz2
(TclInitAuxDataTypeTable): Extended to register the DictUpdateInfo structure as an AuxData type. For use by tbcload, tclcompiler.
-rw-r--r--ChangeLog6
-rw-r--r--generic/tclCompile.c1
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 0a753e4..5c7a7b0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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);
}
/*