diff options
| author | dgp@users.sourceforge.net <dgp> | 2004-08-25 01:10:48 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2004-08-25 01:10:48 (GMT) |
| commit | 1b8c9f573df2efa0f07b7bcb39704603abb35568 (patch) | |
| tree | 30d7c97f4f9f6f85dbac27db63ba94694b6f3592 /generic/tclStubInit.c | |
| parent | c1172b708665604a1404f8538f6eb7203ad894b1 (diff) | |
| download | tcl-1b8c9f573df2efa0f07b7bcb39704603abb35568.zip tcl-1b8c9f573df2efa0f07b7bcb39704603abb35568.tar.gz tcl-1b8c9f573df2efa0f07b7bcb39704603abb35568.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/tclStubInit.c')
| -rw-r--r-- | generic/tclStubInit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index c6c9232..4983996 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.100 2004/07/03 02:03:38 msofer Exp $ + * RCS: @(#) $Id: tclStubInit.c,v 1.101 2004/08/25 01:11:20 dgp Exp $ */ #include "tclInt.h" @@ -112,7 +112,7 @@ TclIntStubs tclIntStubs = { NULL, /* 30 */ TclGetExtension, /* 31 */ TclGetFrame, /* 32 */ - TclGetInterpProc, /* 33 */ + NULL, /* 33 */ TclGetIntForIndex, /* 34 */ NULL, /* 35 */ TclGetLong, /* 36 */ @@ -173,7 +173,7 @@ TclIntStubs tclIntStubs = { TclProcCleanupProc, /* 91 */ TclProcCompileProc, /* 92 */ TclProcDeleteProc, /* 93 */ - TclProcInterpProc, /* 94 */ + NULL, /* 94 */ NULL, /* 95 */ TclRenameCommand, /* 96 */ TclResetShadowedCmdRefs, /* 97 */ |
