summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2009-12-29 16:58:40 (GMT)
committerdkf <dkf@noemail.net>2009-12-29 16:58:40 (GMT)
commit41dffd10b42839a792baf78d1dce6f4cda7817a9 (patch)
tree9ef8bc59bf7e0a35d7c7d61b77a7f26db7c39d80 /ChangeLog
parent8fca69e637e154a26b59965bf15d1658adab9490 (diff)
downloadtcl-41dffd10b42839a792baf78d1dce6f4cda7817a9.zip
tcl-41dffd10b42839a792baf78d1dce6f4cda7817a9.tar.gz
tcl-41dffd10b42839a792baf78d1dce6f4cda7817a9.tar.bz2
Minor optimization for Tcl_RecordAndEvalObj
FossilOrigin-Name: a8d116287035a7db8644fc06f40ec5e9d4aa10fc
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2b51700..280603b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2009-12-29 Donal K. Fellows <dkf@users.sf.net>
+ * generic/tclHistory.c (Tcl_RecordAndEvalObj): Reduce the amount
+ of allocation and deallocation of memory by caching objects in the
+ interpreter assocData table.
+
* generic/tclObj.c (Tcl_GetCommandFromObj): Rewrite the logic so
that it does not require making assignments part way through an
'if' condition, which was deeply unclear.
@@ -9,8 +13,8 @@
2009-12-29 Pat Thoyts <patthoyts@users.sourceforge.net>
- * generic/tclBinary.c: Handle completely invalid input to the decode
- * tests/binary.test: methods [Bug 2922555].
+ * generic/tclBinary.c: [Bug 2922555]: Handle completely invalid input
+ * tests/binary.test: to the decode methods.
2009-12-28 Donal K. Fellows <dkf@users.sf.net>