summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2006-12-03 16:31:02 (GMT)
committerdgp <dgp@users.sourceforge.net>2006-12-03 16:31:02 (GMT)
commitec5224b7f3aa65cb2534a7328645fa010f6d297c (patch)
tree78e262ac229d4bc7b0b05197c3f2d60270abb1c0 /ChangeLog
parentecd460f0cf5fb2d5ba832332353c4c610e8684fb (diff)
downloadtcl-ec5224b7f3aa65cb2534a7328645fa010f6d297c.zip
tcl-ec5224b7f3aa65cb2534a7328645fa010f6d297c.tar.gz
tcl-ec5224b7f3aa65cb2534a7328645fa010f6d297c.tar.bz2
* generic/tclCompExpr.c: Added expr parsing routines that
produce a different set of internal structures representing the parsed expression, as well as routines that go on to convert those structures into the traditional Tcl_Token array format. Use of these routines is currently disabled. #undef PARSE_DIRECT_EXPR_TOKENS to enable them. These routines will only become really useful when more routines that compile directly from the new internal structures are completed.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index bab903d..79bf98c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2006-12-03 Don Porter <dgp@users.sourceforge.net>
+
+ * generic/tclCompExpr.c: Added expr parsing routines that
+ produce a different set of internal structures representing the parsed
+ expression, as well as routines that go on to convert those structures
+ into the traditional Tcl_Token array format. Use of these routines
+ is currently disabled. #undef PARSE_DIRECT_EXPR_TOKENS to enable
+ them. These routines will only become really useful when more
+ routines that compile directly from the new internal structures are
+ completed.
+
2006-12-02 Donal K. Fellows <dkf@users.sf.net>
* doc/file.n: Clarification of [file pathtype] docs. [Bug 1606454]