summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2010-02-24 14:30:31 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2010-02-24 14:30:31 (GMT)
commit96d071af5418655b8dfbecd0410b6e5d07bfbde5 (patch)
tree02ebdf02ca154c666a08cbc7e9b057a16e1dc918 /ChangeLog
parent3201edaaf6efa495d6e2c747817da9ba884a8be5 (diff)
downloadtcl-96d071af5418655b8dfbecd0410b6e5d07bfbde5.zip
tcl-96d071af5418655b8dfbecd0410b6e5d07bfbde5.tar.gz
tcl-96d071af5418655b8dfbecd0410b6e5d07bfbde5.tar.bz2
Fix some nasties with handling duplicate keys in list->dict->list conversions.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c937d2b..c9db0b5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2010-02-24 Donal K. Fellows <dkf@users.sf.net>
+ * generic/tclDictObj.c (SetDictFromAny): Prevent the list<->dict
+ * generic/tclListObj.c (SetListFromAny): conversion code from taking
+ too many liberties. Stops loss of duplicate keys in some scenarios.
+ Many thanks to Jean-Claude Wippler for finding this.
+
* generic/tclExecute.c (TclExecuteByteCode): Reduce ifdef-fery and
size of activation record. More variables shared across instructions
than before.