diff options
author | dgp <dgp@users.sourceforge.net> | 2004-07-06 21:08:36 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-07-06 21:08:36 (GMT) |
commit | 20d4b34f6477d15f854d40540e12bb756e48d90e (patch) | |
tree | 51a329e37b8b741eac047447f44baaf03c6e9475 /ChangeLog | |
parent | b7a17dd6698402d0a310eea11b8969e79d2f3680 (diff) | |
download | tcl-20d4b34f6477d15f854d40540e12bb756e48d90e.zip tcl-20d4b34f6477d15f854d40540e12bb756e48d90e.tar.gz tcl-20d4b34f6477d15f854d40540e12bb756e48d90e.tar.bz2 |
* tests/cmdMZ.test (cmdMZ-return-2.17): Added a test that a word
containing backslash-quoted value is treated correctly.
* generic/tclCompile.c (TclWordKnownAtCompileTime): [Bug 986196]
Corrected flaw above and the flaw that caused TCL_TOKEN_SIMPLE_WORDs
to have their original word value copied ( "{a b}" ) rather than the
actual value ( "a b" ). Thanks to Kevin Kenny for report and tests.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1,3 +1,13 @@ +2004-07-06 Don Porter <dgp@users.sourceforge.net> + + * tests/cmdMZ.test (cmdMZ-return-2.17): Added a test that a word + containing backslash-quoted value is treated correctly. + + * generic/tclCompile.c (TclWordKnownAtCompileTime): [Bug 986196] + Corrected flaw above and the flaw that caused TCL_TOKEN_SIMPLE_WORDs + to have their original word value copied ( "{a b}" ) rather than the + actual value ( "a b" ). Thanks to Kevin Kenny for report and tests. + 2004-07-06 Kevin B. Kenny <kennykb@acm.org> * tests/cmdMZ.test (cmdMZ-return-2.15,cmdMZ-return-2.16): |