summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2005-03-18 15:50:56 (GMT)
committerdgp <dgp@users.sourceforge.net>2005-03-18 15:50:56 (GMT)
commit1602b42886546fdee649c4be434cb8520e255248 (patch)
tree1b3e83defa340cf74ce336ffb668012adebdcc4c /ChangeLog
parentf7bd42abc0c6952dae468911161f6dd0dc01f913 (diff)
downloadtcl-1602b42886546fdee649c4be434cb8520e255248.zip
tcl-1602b42886546fdee649c4be434cb8520e255248.tar.gz
tcl-1602b42886546fdee649c4be434cb8520e255248.tar.bz2
* generic/tclBasic.c (Tcl_EvalEx): Restored recursion limit
* generic/tclParse.c (TclSubstTokens): testing in nested command * tests/basic.test (basic-46.4): substitutions within direct * tests/parse.test (parse-19.*): script evaluation (Tcl_EvalEx) that got lost in the parser reforms of Tcl 8.1. Added tests for correct behavior. [Bug 1115904]
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2e0c663..2f7a55f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,7 +2,15 @@
* generic/tclCompCmds.c (TclCompileIncrCmd): Corrected checks
for immediate operand usage to permit leading space and sign
- characters. [Bug 1165671]
+ characters. Restores more efficient bytecode for [incr x -1]
+ that got lost in the CONST string reforms of Tcl 8.4. [Bug 1165671]
+
+ * generic/tclBasic.c (Tcl_EvalEx): Restored recursion limit
+ * generic/tclParse.c (TclSubstTokens): testing in nested command
+ * tests/basic.test (basic-46.4): substitutions within direct
+ * tests/parse.test (parse-19.*): script evaluation (Tcl_EvalEx)
+ that got lost in the parser reforms of Tcl 8.1. Added tests for
+ correct behavior. [Bug 1115904]
2005-03-15 Vince Darley <vincentdarley@users.sourceforge.net>