summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2003-07-03 23:16:25 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2003-07-03 23:16:25 (GMT)
commit9ef344f3f4c962cb0710eabd4bdbca23381e8088 (patch)
treeca5afc3a8605289ba88ad9ad8302878fa4aac2bf /ChangeLog
parent77697542b70f5ce1907d19ef2612f600a19ceb43 (diff)
downloadtcl-9ef344f3f4c962cb0710eabd4bdbca23381e8088.zip
tcl-9ef344f3f4c962cb0710eabd4bdbca23381e8088.tar.gz
tcl-9ef344f3f4c962cb0710eabd4bdbca23381e8088.tar.bz2
Made [array get] return a dictionary, and allowed [array set] to accept one
without having to convert it to a list (though lists are still preferred.) [Bug 759935]
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 1149623..eceba99 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2003-07-04 Donal K. Fellows <fellowsd@cs.man.ac.uk>
+
+ * generic/tclVar.c (Tcl_ArrayObjCmd, TclArraySet): Made [array
+ get] and [array set] work with dictionaries, producing them and
+ consuming them. Note that for compatability reasons, you will
+ never get a dict from feeding a string literal to [array set]
+ since that alters the trace behaviour of "multi-key" sets.
+ [Bug 759935]
+
2003-06-23 Vince Darley <vincentdarley@users.sourceforge.net>
* generic/tclTrace.c: fix to Window debug build compilation error.