diff options
| author | andreask@activestate.com <andreas_kupries> | 2004-05-19 19:23:58 (GMT) |
|---|---|---|
| committer | andreask@activestate.com <andreas_kupries> | 2004-05-19 19:23:58 (GMT) |
| commit | d9ca06983b411237d2d112fb974c114aab5d0214 (patch) | |
| tree | 35d50bd6f9cb7d77f165ca0990e3947f05e29314 /generic/tclIO.c | |
| parent | c30533a9cb8a99c1f8ae6a77077b473551384b46 (diff) | |
| download | tcl-d9ca06983b411237d2d112fb974c114aab5d0214.zip tcl-d9ca06983b411237d2d112fb974c114aab5d0214.tar.gz tcl-d9ca06983b411237d2d112fb974c114aab5d0214.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); } |
