summaryrefslogtreecommitdiffstats
path: root/generic/tcl.h
diff options
context:
space:
mode:
authorandreas_kupries <akupries@shaw.ca>2004-09-10 20:01:02 (GMT)
committerandreas_kupries <akupries@shaw.ca>2004-09-10 20:01:02 (GMT)
commit018ea7c6a2fe6ed1ced2e815c90008ec68e4fc15 (patch)
tree2378a3d3f1351d57bf05e094923a83208470a99b /generic/tcl.h
parente670a163e03da4535c4a90ad9471f702c37a43ec (diff)
downloadtcl-018ea7c6a2fe6ed1ced2e815c90008ec68e4fc15.zip
tcl-018ea7c6a2fe6ed1ced2e815c90008ec68e4fc15.tar.gz
tcl-018ea7c6a2fe6ed1ced2e815c90008ec68e4fc15.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.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tcl.h b/generic/tcl.h
index bde43f0..716346e 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.153.2.13 2004/07/13 19:21:17 hobbs Exp $
+ * RCS: @(#) $Id: tcl.h,v 1.153.2.14 2004/09/10 20:01:03 andreas_kupries Exp $
*/
#ifndef _TCL
@@ -1410,7 +1410,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)
/*
@@ -1557,8 +1557,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. */
/*