diff options
author | andreas_kupries <akupries@shaw.ca> | 2001-09-10 17:17:41 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2001-09-10 17:17:41 (GMT) |
commit | 4b150f866b9cf91bb9974d7cd40a817c428d019e (patch) | |
tree | 192e2e551b9ccd4719de44b72ee348205dd2df89 /generic/tclStubInit.c | |
parent | 4d5d85ec3b978a2fdd3c1beb1107725a3df66803 (diff) | |
download | tcl-4b150f866b9cf91bb9974d7cd40a817c428d019e.zip tcl-4b150f866b9cf91bb9974d7cd40a817c428d019e.tar.gz tcl-4b150f866b9cf91bb9974d7cd40a817c428d019e.tar.bz2 |
* generic/tclInt.decls: Also added 'TclWinFlushDirtyChannels' to
the internal platform specific stub table.
* win/tclWinFile.c (TclpObjStat): Now added the call to
'TclWinFlushDirtyChannels' to this function. I don't know where
my head was last thursday (2001-09-06), but the call was
actually added to 'TclpObjChdir', i.e. the implementation of
[cd]. Corrected this now. Thanks to Vince Darley for spotting
this.
Diffstat (limited to 'generic/tclStubInit.c')
-rw-r--r-- | generic/tclStubInit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index f216358..900979a 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStubInit.c,v 1.59 2001/09/06 17:51:00 vincentdarley Exp $ + * RCS: @(#) $Id: tclStubInit.c,v 1.60 2001/09/10 17:17:41 andreas_kupries Exp $ */ #include "tclInt.h" @@ -288,6 +288,7 @@ TclIntPlatStubs tclIntPlatStubs = { TclWinNoBackslash, /* 24 */ TclWinGetPlatform, /* 25 */ TclWinSetInterfaces, /* 26 */ + TclWinFlushDirtyChannels, /* 27 */ #endif /* __WIN32__ */ #ifdef MAC_TCL TclpSysAlloc, /* 0 */ |