diff options
author | dgp <dgp@users.sourceforge.net> | 2007-08-21 20:41:31 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2007-08-21 20:41:31 (GMT) |
commit | 5a6f909bc973a094f28f7cadc81faf84a9128748 (patch) | |
tree | e30018135f4e85fac7c5b364a7f210449f2cd160 /ChangeLog | |
parent | 2d087cd971d85e6e4bb484878b61f0ce4d845b6b (diff) | |
download | tcl-5a6f909bc973a094f28f7cadc81faf84a9128748.zip tcl-5a6f909bc973a094f28f7cadc81faf84a9128748.tar.gz tcl-5a6f909bc973a094f28f7cadc81faf84a9128748.tar.bz2 |
* generic/tclMain.c: Corrected the logic of dropping the last
* tests/main.test: newline from an interactively typed command.
[Bug 1775878].
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2007-08-21 Don Porter <dgp@users.sourceforge.net> + + * generic/tclMain.c: Corrected the logic of dropping the last + * tests/main.test: newline from an interactively typed command. + [Bug 1775878]. + 2007-08-21 Pat Thoyts <patthoyts@users.sourceforge.net> * tests/thread.test: thread-4.4: clear ::errorInfo in the thread as @@ -22,7 +28,7 @@ previous ((a >= 0 || b >= 0 || s < 0) && (s >= 0 || b < 0 || a < 0)) now - (((a^s) >= 0) || ((a^b) < 0)) + (((a^s) >= 0) || ((a^b) < 0)) This expresses: "a and s have the same sign or else a and b have different sign". |