From 870e3b5d95325fb625374c0b97314635a784e806 Mon Sep 17 00:00:00 2001 From: andreas_kupries Date: Fri, 10 Sep 2004 19:54:05 +0000 Subject: * generic/tcl.h: Micro formatting fixes. * generic/tclIOGT.c: Channel version fixed, must be 3, to have wideseekProc. Thanks to David Graveraux . --- ChangeLog | 6 ++++++ generic/tcl.h | 8 ++++---- generic/tclIOGT.c | 4 ++-- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index dd13ad0..8d77214 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-09-10 Andreas Kupries + + * generic/tcl.h: Micro formatting fixes. + * generic/tclIOGT.c: Channel version fixed, must be 3, to have + wideseekProc. Thanks to David Graveraux . + 2004-09-11 Don Porter * generic/tclNamespace.c (TclGetNamespaceForQualName): Resolved 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. */ /* diff --git a/generic/tclIOGT.c b/generic/tclIOGT.c index 92d405c..052d076 100644 --- a/generic/tclIOGT.c +++ b/generic/tclIOGT.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. * - * CVS: $Id: tclIOGT.c,v 1.8 2004/04/06 22:25:52 dgp Exp $ + * CVS: $Id: tclIOGT.c,v 1.9 2004/09/10 19:54:06 andreas_kupries Exp $ */ #include "tclInt.h" @@ -130,7 +130,7 @@ static void ResultAdd _ANSI_ARGS_ ((ResultBuffer* r, static Tcl_ChannelType transformChannelType = { "transform", /* Type name. */ - TCL_CHANNEL_VERSION_2, + TCL_CHANNEL_VERSION_3, TransformCloseProc, /* Close proc. */ TransformInputProc, /* Input proc. */ TransformOutputProc, /* Output proc. */ -- cgit v0.12