summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2011-05-02 20:34:04 (GMT)
committerdgp <dgp@users.sourceforge.net>2011-05-02 20:34:04 (GMT)
commitde9d63c58f969e5fbaa2804b0a05f16165c39c6d (patch)
tree5f0b8b4d7d0d54b7d6f883fd2cd116a2fa5f9851 /ChangeLog
parent4f558942fb97b0dd3652ee2a257fe94b1dc3a8db (diff)
parent4d08fa4a9a4dd33e3047f53257383499559aa94d (diff)
downloadtcl-de9d63c58f969e5fbaa2804b0a05f16165c39c6d.zip
tcl-de9d63c58f969e5fbaa2804b0a05f16165c39c6d.tar.gz
tcl-de9d63c58f969e5fbaa2804b0a05f16165c39c6d.tar.bz2
Rewrite of parts of the switch compiler to better use the powers of
TclFindElement() and do less parsing on its own.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 0207c97..f821704 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -20,9 +20,17 @@
* tests/parse.test: Tests for expanded literals quoting detection.
+ * generic/tclCompCmds.c: New TclFindElement() is also a better
+ fit for the [switch] compiler.
+
* generic/tclInt.h: Replace TclCountSpaceRuns() with
* generic/tclListObj.c: TclMaxListLength() which is the function we
* generic/tclUtil.c: actually want.
+ * generic/tclCompCmds.c:
+
+ * generic/tclCompCmds.c: Rewrite of parts of the switch compiler to
+ better use the powers of TclFindElement() and do less parsing on
+ its own.
2011-04-28 Don Porter <dgp@users.sourceforge.net>