diff options
| author | dgp <dgp@users.sourceforge.net> | 2015-08-13 17:02:04 (GMT) |
|---|---|---|
| committer | dgp <dgp@users.sourceforge.net> | 2015-08-13 17:02:04 (GMT) |
| commit | ed005a749a40a08ef033442e857b3c626f805c47 (patch) | |
| tree | 63b4fa1f1a68fffa6fbb3dd51755d5cb1b14df0f | |
| parent | 1cc03c884b3940c3fa29e8c52ae61c3d019d08fd (diff) | |
| download | tcl-ed005a749a40a08ef033442e857b3c626f805c47.zip tcl-ed005a749a40a08ef033442e857b3c626f805c47.tar.gz tcl-ed005a749a40a08ef033442e857b3c626f805c47.tar.bz2 | |
Disable the filtering of ReflectWatch so that every UpdateInterest() call
flows through to become a [driver watch] evaluation. This makes new test
io-53.19 pass.
It also makes a collection of 10 test in ioCmd.test start failing, all of
which are recording detailed reflected channel driver command evaluation.
The now unfiltered [driver watch] change this record without (at least
apparently) changing any behavior. Need review.
| -rw-r--r-- | generic/tclIORChan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclIORChan.c b/generic/tclIORChan.c index 85a35b8..b059c79 100644 --- a/generic/tclIORChan.c +++ b/generic/tclIORChan.c @@ -1535,7 +1535,7 @@ ReflectWatch( mask &= rcPtr->mode; - if (mask == rcPtr->interest) { + if (0 && mask == rcPtr->interest) { /* * Same old, same old, why should we do something? */ |
