diff options
author | hobbs <hobbs> | 2000-03-31 08:52:03 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-03-31 08:52:03 (GMT) |
commit | 3c56f64822ed7b64de23a900456152fe8ee1fb60 (patch) | |
tree | 27c79cab0f46f3ede18026925120382d8f111363 /generic/tclStubInit.c | |
parent | 82a82afca9929d66fcf5356ef5a3d8fae735c4fb (diff) | |
download | tcl-3c56f64822ed7b64de23a900456152fe8ee1fb60.zip tcl-3c56f64822ed7b64de23a900456152fe8ee1fb60.tar.gz tcl-3c56f64822ed7b64de23a900456152fe8ee1fb60.tar.bz2 |
* generic/tclBasic.c (Tcl_DeleteCommandFromToken): Added comments
noting the need to pair ckalloc with ckfree. [Bug: 4262]
* generic/tclInt.decls:
* generic/tclIntPlatDecls.h:
* generic/tclStubInit.c:
* win/tclWin32Dll.c: removed TclWinSynchSpawn (vestige of Win32s
support).
Diffstat (limited to 'generic/tclStubInit.c')
-rw-r--r-- | generic/tclStubInit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index 47b5a1b..c2349d1 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.31 2000/01/24 02:29:58 hobbs Exp $ + * RCS: @(#) $Id: tclStubInit.c,v 1.32 2000/03/31 08:52:06 hobbs Exp $ */ #include "tclInt.h" @@ -264,7 +264,7 @@ TclIntPlatStubs tclIntPlatStubs = { TclWinSetSockOpt, /* 7 */ TclpGetPid, /* 8 */ TclWinGetPlatformId, /* 9 */ - TclWinSynchSpawn, /* 10 */ + NULL, /* 10 */ TclGetAndDetachPids, /* 11 */ TclpCloseFile, /* 12 */ TclpCreateCommandChannel, /* 13 */ |