summaryrefslogtreecommitdiffstats
path: root/generic/tclIO.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-08-15 08:10:11 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-08-15 08:10:11 (GMT)
commitab449cd1d2b045f11c52324c43feb38f00d12dda (patch)
tree67ff12657f597df926639a6aef0753add8985a0a /generic/tclIO.c
parentbe3995f91a73707ad23aa2454b143f6ee0301005 (diff)
parent62d4e2a24eedc77e3aff652f43cf553f8eecca3a (diff)
downloadtcl-ab449cd1d2b045f11c52324c43feb38f00d12dda.zip
tcl-ab449cd1d2b045f11c52324c43feb38f00d12dda.tar.gz
tcl-ab449cd1d2b045f11c52324c43feb38f00d12dda.tar.bz2
Merge 8.7
Diffstat (limited to 'generic/tclIO.c')
-rw-r--r--generic/tclIO.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclIO.c b/generic/tclIO.c
index 9d15ff5..29cbad5 100644
--- a/generic/tclIO.c
+++ b/generic/tclIO.c
@@ -7484,7 +7484,7 @@ Tcl_OutputBuffered(
bytesBuffered += BytesLeft(bufPtr);
}
if (statePtr->curOutPtr != NULL) {
- register ChannelBuffer *curOutPtr = statePtr->curOutPtr;
+ ChannelBuffer *curOutPtr = statePtr->curOutPtr;
if (IsBufferReady(curOutPtr)) {
bytesBuffered += BytesLeft(curOutPtr);
@@ -11224,9 +11224,9 @@ Tcl_ChannelTruncateProc(
static void
DupChannelIntRep(
- register Tcl_Obj *srcPtr, /* Object with internal rep to copy. Must have
+ Tcl_Obj *srcPtr, /* Object with internal rep to copy. Must have
* an internal rep of type "Channel". */
- register Tcl_Obj *copyPtr) /* Object with internal rep to set. Must not
+ Tcl_Obj *copyPtr) /* Object with internal rep to set. Must not
* currently have an internal rep.*/
{
ResolvedChanName *resPtr;