summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2006-12-04 23:13:19 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2006-12-04 23:13:19 (GMT)
commitecaf54bac05623161ca4abdd7a276beeee176e5a (patch)
tree4186f47268717fcc147488845a8dd68c052fd95f /ChangeLog
parent39dc846c629bb2f02adc7fc2c6d9ec138acc6436 (diff)
downloadtcl-ecaf54bac05623161ca4abdd7a276beeee176e5a.zip
tcl-ecaf54bac05623161ca4abdd7a276beeee176e5a.tar.gz
tcl-ecaf54bac05623161ca4abdd7a276beeee176e5a.tar.bz2
Implement TIP#267
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog22
1 files changed, 14 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 0706d28..838049c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,21 +1,27 @@
+2006-12-04 Donal K. Fellows <dkf@users.sf.net>
+
+ TIP#267 IMPLEMENTATION
+
+ * generic/tclIOCmd.c (Tcl_ExecObjCmd): Added -ignorestderr option,
+ * tests/exec.test, doc/exec.n: loosely from [Patch 1476191]
+
2006-12-04 Don Porter <dgp@users.sourceforge.net>
* generic/tclCompExpr.c: Added implementation for the
CompileExprTree() routine that can produce expression bytecode
- directly from internal structures with no need to pass through
- the Tcl_Token array representation. Still disabled by default.
- #undef USE_EXPR_TOKENS to try it out.
+ directly from internal structures with no need to pass through the
+ Tcl_Token array representation. Still disabled by default. #undef
+ USE_EXPR_TOKENS to try it out.
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.
+ 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>