diff options
| author | andreask@activestate.com <andreas_kupries> | 2004-09-10 19:54:05 (GMT) |
|---|---|---|
| committer | andreask@activestate.com <andreas_kupries> | 2004-09-10 19:54:05 (GMT) |
| commit | e7388c8c9fbe0c4ab7765908b9763e827ae40f32 (patch) | |
| tree | 76b6a013a0c8f5f03bf166ea0dfe0d0e156215be /generic/tcl.h | |
| parent | d97436f2a57e50bf0eef101fe0c157fa88740969 (diff) | |
| download | tcl-e7388c8c9fbe0c4ab7765908b9763e827ae40f32.zip tcl-e7388c8c9fbe0c4ab7765908b9763e827ae40f32.tar.gz tcl-e7388c8c9fbe0c4ab7765908b9763e827ae40f32.tar.bz2 | |
* generic/tcl.h: Micro formatting fixes.
* generic/tclIOGT.c: Channel version fixed, must be 3, to have
wideseekProc. Thanks to David Graveraux <davygrvy@pobox.com>.
Diffstat (limited to 'generic/tcl.h')
| -rw-r--r-- | generic/tcl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index ad73865..a697ade 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tcl.h,v 1.182 2004/07/01 10:08:10 dkf Exp $ + * RCS: @(#) $Id: tcl.h,v 1.183 2004/09/10 19:54:06 andreas_kupries Exp $ */ #ifndef _TCL @@ -1421,7 +1421,7 @@ typedef int (Tcl_WaitForEventProc) _ANSI_ARGS_((Tcl_Time *timePtr)); * Bits passed to Tcl_DriverClose2Proc to indicate which side of a channel * should be closed. */ -#define TCL_CLOSE_READ (1<<1) +#define TCL_CLOSE_READ (1<<1) #define TCL_CLOSE_WRITE (1<<2) /* @@ -1568,8 +1568,8 @@ typedef struct Tcl_ChannelType { * set the channel into blocking or nonblocking mode. They are passed * as arguments to the blockModeProc procedure in the above structure. */ -#define TCL_MODE_BLOCKING 0 /* Put channel into blocking mode. */ -#define TCL_MODE_NONBLOCKING 1 /* Put channel into nonblocking +#define TCL_MODE_BLOCKING 0 /* Put channel into blocking mode. */ +#define TCL_MODE_NONBLOCKING 1 /* Put channel into nonblocking * mode. */ /* |
