diff options
author | andreas_kupries <akupries@shaw.ca> | 2004-05-19 19:23:58 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2004-05-19 19:23:58 (GMT) |
commit | b3dc4ac2be00faaa212364b6d4f0c0e92b9255ac (patch) | |
tree | 35d50bd6f9cb7d77f165ca0990e3947f05e29314 /generic/tclIO.c | |
parent | c25b1816386cd466c534841bba77bae6e9aad5ab (diff) | |
download | tcl-b3dc4ac2be00faaa212364b6d4f0c0e92b9255ac.zip tcl-b3dc4ac2be00faaa212364b6d4f0c0e92b9255ac.tar.gz tcl-b3dc4ac2be00faaa212364b6d4f0c0e92b9255ac.tar.bz2 |
Removed one bogus clearance of the has-more flag. Erroneously kept
after shifting the code.
Diffstat (limited to 'generic/tclIO.c')
-rw-r--r-- | generic/tclIO.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/generic/tclIO.c b/generic/tclIO.c index a689ca9..f1a3266 100644 --- a/generic/tclIO.c +++ b/generic/tclIO.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIO.c,v 1.61.2.5 2004/05/19 19:16:21 andreas_kupries Exp $ + * RCS: @(#) $Id: tclIO.c,v 1.61.2.6 2004/05/19 19:23:58 andreas_kupries Exp $ */ #include "tclInt.h" @@ -5324,8 +5324,6 @@ GetInput(chanPtr) nread = -1; result = EWOULDBLOCK; } else { - statePtr->flags &= ~CHANNEL_HAS_MORE_DATA; - nread = (chanPtr->typePtr->inputProc)(chanPtr->instanceData, bufPtr->buf + bufPtr->nextAdded, toRead, &result); } |