diff options
author | hobbs <hobbs> | 1999-12-21 23:58:03 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-12-21 23:58:03 (GMT) |
commit | bdf52c7793a08e6f394c1156dbfffdcde3daf2b8 (patch) | |
tree | 0b6676817dda931edd6b013531b493b34a2c5b22 /generic/tclIO.c | |
parent | ad4a42c1c2da6828324db8589acddcca79616e8c (diff) | |
download | tcl-bdf52c7793a08e6f394c1156dbfffdcde3daf2b8.zip tcl-bdf52c7793a08e6f394c1156dbfffdcde3daf2b8.tar.gz tcl-bdf52c7793a08e6f394c1156dbfffdcde3daf2b8.tar.bz2 |
* generic/tclCmdIL.c: added -unique option to lsort
* generic/tclThreadTest.c: changed thread ids to longs [Bug: 3902]
Diffstat (limited to 'generic/tclIO.c')
-rw-r--r-- | generic/tclIO.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclIO.c b/generic/tclIO.c index 7ef54fb..117acaa 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.18 1999/12/08 03:49:52 hobbs Exp $ + * RCS: @(#) $Id: tclIO.c,v 1.19 1999/12/21 23:58:03 hobbs Exp $ */ #include "tclInt.h" @@ -2324,8 +2324,8 @@ FlushChannel(interp, chanPtr, calledFromAsyncFlush) /* * This used to check for CHANNEL_NONBLOCKING, and panic * if the channel was blocking. However, it appears - * that setting stdin to -blocking 0 has some effect - * on the stdout when it's a tty channel + * that setting stdin to -blocking 0 has some effect on + * the stdout when it's a tty channel (dup'ed underneath) */ if (!(chanPtr->flags & BG_FLUSH_SCHEDULED)) { chanPtr->flags |= BG_FLUSH_SCHEDULED; |