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/tclInt.decls | |
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/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index e649022..b9ca659 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -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: tclInt.decls,v 1.19 1999/12/12 22:46:42 hobbs Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.20 2000/03/31 08:52:04 hobbs Exp $ library tcl @@ -751,9 +751,10 @@ declare 8 win { declare 9 win { int TclWinGetPlatformId(void) } -declare 10 win { - int TclWinSynchSpawn(void *args, int type, void **trans, Tcl_Pid *pidPtr) -} +# Removed in 8.3.1 (for Win32s only) +#declare 10 win { +# int TclWinSynchSpawn(void *args, int type, void **trans, Tcl_Pid *pidPtr) +#} # Pipe channel functions |