summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorhobbs <hobbs>2000-06-02 05:20:09 (GMT)
committerhobbs <hobbs>2000-06-02 05:20:09 (GMT)
commit25eb6f30ba3b8c53a6a7e239c038510abed59937 (patch)
treeed945b2ae00685b8a367868617df44e3eb3b2c52 /ChangeLog
parentfe38772e8639b48fcfd4b9c98f4527b3cdf8ff5a (diff)
downloadtcl-25eb6f30ba3b8c53a6a7e239c038510abed59937.zip
tcl-25eb6f30ba3b8c53a6a7e239c038510abed59937.tar.gz
tcl-25eb6f30ba3b8c53a6a7e239c038510abed59937.tar.bz2
(CloseChannel): further extended CloseChannel in the stacked case
to effect certain operations on the next channel that would have been done in Tcl_Close. Also added CHANNEL_CLOSED and removed (TCL_READABLE|TCL_WRITABLE) bits from chanPtr->flags. Changed final reset of the WatchProc to check the chanDownPtr's (next) interestMask.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 70cb148..5e48a5e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,12 @@
* generic/tclIO.c (CloseChannel): Rewrote CloseChannel code to
unstack a channel during the close process. Fixed a refcount bug
in Tcl_UnstackChannel. [Bug: 5623]
+ (CloseChannel): further extended CloseChannel in the stacked case
+ to effect certain operations on the next channel that would have
+ been done in Tcl_Close. Also added CHANNEL_CLOSED and removed
+ (TCL_READABLE|TCL_WRITABLE) bits from chanPtr->flags. Changed
+ final reset of the WatchProc to check the chanDownPtr's (next)
+ interestMask.
2000-05-29 Sandeep Tamhankar <sandeep@scriptics.com>