summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2010-02-09 20:51:53 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2010-02-09 20:51:53 (GMT)
commit10c072cd77b0339c60b1861fe19ee8bd81eb14a0 (patch)
treefdc59a83272d2d5bacd76f918b88cde401b76e61 /ChangeLog
parentc9ff0f04abcd6fbf70000f4d8e28579ffe341303 (diff)
downloadtcl-10c072cd77b0339c60b1861fe19ee8bd81eb14a0.zip
tcl-10c072cd77b0339c60b1861fe19ee8bd81eb14a0.tar.gz
tcl-10c072cd77b0339c60b1861fe19ee8bd81eb14a0.tar.bz2
Compilation of [try] now enabled!
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog12
1 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0664c23..695fb0d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,16 @@
+2010-02-09 Donal K. Fellows <dkf@users.sf.net>
+
+ * generic/tclCompCmds.c (TclCompileTryCmd, IssueTryInstructions)
+ (IssueTryFinallyInstructions): Added compiler for the [try] command.
+ It is split into three pieces that handle the parsing of the tokens,
+ the issuing of instructions for finally-free [try], and the issuing of
+ instructions for [try] with finally; there are enough differences
+ between the all cases that it was easier to split the code rather than
+ have a single function do the whole thing.
+
2010-02-09 Alexandre Ferrieux <ferrieux@users.sourceforge.net>
- * tools/genStubs.tcl: remove dependency on 8.5+ idiom "in" in
+ * tools/genStubs.tcl: Remove dependency on 8.5+ idiom "in" in
expressions.
2010-02-08 Donal K. Fellows <dkf@users.sf.net>