diff options
author | dgp <dgp@users.sourceforge.net> | 2004-08-25 01:10:48 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-08-25 01:10:48 (GMT) |
commit | 6edc52fd6815d3479ca129e736b123fce6de7512 (patch) | |
tree | 30d7c97f4f9f6f85dbac27db63ba94694b6f3592 /generic/tclInt.decls | |
parent | 7c97db38df16e65d2492a8d351627aa8960b8f5e (diff) | |
download | tcl-6edc52fd6815d3479ca129e736b123fce6de7512.zip tcl-6edc52fd6815d3479ca129e736b123fce6de7512.tar.gz tcl-6edc52fd6815d3479ca129e736b123fce6de7512.tar.bz2 |
* generic/tclProc.c: The routine TclProcInterpProc was a specific
* generic/tclTestProcBodyObj.c: instance of the general service already provided
by TclObjInvokeProc. Removed TclProcInterpProc and TclGetInterpProc from the
code...
* generic/tclInt.decls ...and from the internal stubs table.
* generic/tclIntDecls.h
* generic/tclStubInit.c
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index d8e3e1f..9e45d90 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -12,7 +12,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.76 2004/07/03 02:03:37 msofer Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.77 2004/08/25 01:11:03 dgp Exp $ library tcl @@ -147,9 +147,10 @@ declare 32 generic { int TclGetFrame(Tcl_Interp *interp, CONST char *str, CallFrame **framePtrPtr) } -declare 33 generic { - TclCmdProcType TclGetInterpProc(void) -} +# Removed in Tcl 8.5 +#declare 33 generic { +# TclCmdProcType TclGetInterpProc(void) +#} declare 34 generic { int TclGetIntForIndex(Tcl_Interp *interp, Tcl_Obj *objPtr, int endValue, int *indexPtr) @@ -374,10 +375,11 @@ declare 92 generic { declare 93 generic { void TclProcDeleteProc(ClientData clientData) } -declare 94 generic { - int TclProcInterpProc(ClientData clientData, Tcl_Interp *interp, - int argc, CONST84 char **argv) -} +# Removed in Tcl 8.5: +#declare 94 generic { +# int TclProcInterpProc(ClientData clientData, Tcl_Interp *interp, +# int argc, CONST84 char **argv) +#} # Replaced by Tcl_FSStat in 8.4: #declare 95 generic { # int TclpStat(CONST char *path, Tcl_StatBuf *buf) |