summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2011-01-01 10:49:09 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2011-01-01 10:49:09 (GMT)
commitda1eee73c7323e2f858ee6556938bdfb31e6bc0e (patch)
tree244c419663f8544c29dfa4e7c7b5ddc49644d6a0 /ChangeLog
parent841cf21cd27b778487c1996e20f5dffff6052acd (diff)
downloadtcl-da1eee73c7323e2f858ee6556938bdfb31e6bc0e.zip
tcl-da1eee73c7323e2f858ee6556938bdfb31e6bc0e.tar.gz
tcl-da1eee73c7323e2f858ee6556938bdfb31e6bc0e.tar.bz2
* generic/tclCmdIL.c (SortElement): Use unions properly in the
definition of this structure so that there is no need to use nasty int/pointer type punning. Made it clearer what the purposes of the various parts of the structure are.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog19
1 files changed, 13 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index cf15d77..70f1301 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,14 +1,21 @@
+2010-12-31 Donal K. Fellows <dkf@users.sf.net>
+
+ * generic/tclCmdIL.c (SortElement): Use unions properly in the
+ definition of this structure so that there is no need to use nasty
+ int/pointer type punning. Made it clearer what the purposes of the
+ various parts of the structure are.
+
2010-12-31 Jan Nijtmans <nijtmans@users.sf.net>
- * unix/dltest/*.c: Fix [Bug 3148192]: [load] broken. Assure that
- those files are never compiled with -DSTATIC_BUILD
+ * unix/dltest/*.c: [Bug 3148192]: Fix broken [load] tests by ensuring
+ that the affected files are never compiled with -DSTATIC_BUILD.
2010-12-30 Miguel Sofer <msofer@users.sf.net>
- * generic/tclExecute.c (GrowEvaluationStack): off-by-one error in
- sizing the new allocation - was ok in comment but wrong in the
- code. Triggered by [Bug 3142026] which happened to require
- exactly one more than what was in existence.
+ * generic/tclExecute.c (GrowEvaluationStack): Off-by-one error in
+ sizing the new allocation - was ok in comment but wrong in the code.
+ Triggered by [Bug 3142026] which happened to require exactly one more
+ than what was in existence.
2010-12-26 Donal K. Fellows <dkf@users.sf.net>