summaryrefslogtreecommitdiffstats
path: root/generic/tclIO.h
diff options
context:
space:
mode:
authornijtmans <nijtmans@noemail.net>2008-10-04 12:33:34 (GMT)
committernijtmans <nijtmans@noemail.net>2008-10-04 12:33:34 (GMT)
commita36271c055ce62da4e2536b45f00915e299b3b70 (patch)
treeeb77cc8298b5ed98a3fc54bbf7e2f2e8aaba6d20 /generic/tclIO.h
parent3d25cb24614f5c6d3d82b0417bccf799fab046db (diff)
downloadtcl-a36271c055ce62da4e2536b45f00915e299b3b70.zip
tcl-a36271c055ce62da4e2536b45f00915e299b3b70.tar.gz
tcl-a36271c055ce62da4e2536b45f00915e299b3b70.tar.bz2
* doc/ChnlStack.3: CONSTified the typePtr argument
* doc/CrtChannel.3: of Tcl_CreateChannel and Tcl_StackChannel * generic/tcl.decls and the return value of Tcl_GetChannelType * generic/tcl.h * generic/tclIO.h * generic/tclIO.c * ChangeLog * generic/tclDecls.h: regenerated This change complies with TIP #27. FossilOrigin-Name: 1fb6ccc45ada951a42f957d03508305f7197a06f
Diffstat (limited to 'generic/tclIO.h')
-rw-r--r--generic/tclIO.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclIO.h b/generic/tclIO.h
index 23e64a0..a90817b 100644
--- a/generic/tclIO.h
+++ b/generic/tclIO.h
@@ -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.h,v 1.13 2008/05/02 10:27:07 dkf Exp $
+ * RCS: @(#) $Id: tclIO.h,v 1.14 2008/10/04 12:33:34 nijtmans Exp $
*/
/*
@@ -132,7 +132,7 @@ typedef struct Channel {
struct ChannelState *state; /* Split out state information */
ClientData instanceData; /* Instance-specific data provided by creator
* of channel. */
- Tcl_ChannelType *typePtr; /* Pointer to channel type structure. */
+ CONST86 Tcl_ChannelType *typePtr; /* Pointer to channel type structure. */
struct Channel *downChanPtr;/* Refers to channel this one was stacked
* upon. This reference is NULL for normal
* channels. See Tcl_StackChannel. */