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 | bf4a5c995fc82d4d7841bdf0970e027623904529 (patch) | |
tree | 63b4fa1f1a68fffa6fbb3dd51755d5cb1b14df0f | |
parent | 13850d4952b34d30e3e2ae68c3cb2c10c0019737 (diff) | |
download | tcl-bf4a5c995fc82d4d7841bdf0970e027623904529.zip tcl-bf4a5c995fc82d4d7841bdf0970e027623904529.tar.gz tcl-bf4a5c995fc82d4d7841bdf0970e027623904529.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? */ |