summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKevin B Kenny <kennykb@acm.org>2008-10-05 22:12:20 (GMT)
committerKevin B Kenny <kennykb@acm.org>2008-10-05 22:12:20 (GMT)
commitc095ba4368ae987448c8141e73b12276031ed168 (patch)
tree94cff7ec70ea677fcadbc0e90d799558a6e94287 /ChangeLog
parentd663ac8e9131b33c795b6a046e1114156c2062b8 (diff)
downloadtcl-c095ba4368ae987448c8141e73b12276031ed168.zip
tcl-c095ba4368ae987448c8141e73b12276031ed168.tar.gz
tcl-c095ba4368ae987448c8141e73b12276031ed168.tar.bz2
TIP #331 IMPLEMENTATION
* generic/tclListObj.c (TclLsetFlat): * tests/lset.test: Modified the [lset] command so that it allows for an index of 'end+1', which has the effect of appending an element to the list.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 324dfba..48873be 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,13 @@
is between n<<DIGIT_BIT and n<<DIGIT_BIT+1. [Bug 2143288]
Thanks to Malcolm Boffey (malcolm.boffey@virgin.net) for
the patch.
+
+ TIP #331 IMPLEMENTATION
+
+ * generic/tclListObj.c (TclLsetFlat):
+ * tests/lset.test: Modified the [lset] command so that it allows
+ for an index of 'end+1', which has the effect of appending an
+ element to the list.
2008-10-04 Jan Nijtmans <nijtmans@users.sf.net>