From 8466cc50e51b988b8d181dbe9db4e19be8f9c698 Mon Sep 17 00:00:00 2001 From: dkf Date: Sat, 28 Oct 2006 22:49:30 +0000 Subject: Regen --- generic/tclIntDecls.h | 16 +++++++++++++++- generic/tclStubInit.c | 3 ++- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/generic/tclIntDecls.h b/generic/tclIntDecls.h index 8b5ad33..26c85a3 100644 --- a/generic/tclIntDecls.h +++ b/generic/tclIntDecls.h @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIntDecls.h,v 1.92 2006/10/27 12:54:26 dkf Exp $ + * RCS: @(#) $Id: tclIntDecls.h,v 1.93 2006/10/28 22:49:30 dkf Exp $ */ #ifndef _TCLINTDECLS @@ -1031,6 +1031,15 @@ EXTERN int TclObjBeingDeleted _ANSI_ARGS_((Tcl_Obj * objPtr)); EXTERN void TclSetNsPath _ANSI_ARGS_((Namespace * nsPtr, int pathLength, Tcl_Namespace * pathAry[])); #endif +#ifndef TclObjInterpProcCore_TCL_DECLARED +#define TclObjInterpProcCore_TCL_DECLARED +/* 228 */ +EXTERN int TclObjInterpProcCore _ANSI_ARGS_(( + register Tcl_Interp * interp, + CallFrame * framePtr, Tcl_Obj * procNameObj, + int isLambda, int skip, + ProcErrorProc errorProc)); +#endif typedef struct TclIntStubs { int magic; @@ -1279,6 +1288,7 @@ typedef struct TclIntStubs { Tcl_Obj * (*tclTraceDictPath) _ANSI_ARGS_((Tcl_Interp * interp, Tcl_Obj * rootPtr, int keyc, Tcl_Obj *CONST keyv[], int flags)); /* 225 */ int (*tclObjBeingDeleted) _ANSI_ARGS_((Tcl_Obj * objPtr)); /* 226 */ void (*tclSetNsPath) _ANSI_ARGS_((Namespace * nsPtr, int pathLength, Tcl_Namespace * pathAry[])); /* 227 */ + int (*tclObjInterpProcCore) _ANSI_ARGS_((register Tcl_Interp * interp, CallFrame * framePtr, Tcl_Obj * procNameObj, int isLambda, int skip, ProcErrorProc errorProc)); /* 228 */ } TclIntStubs; #ifdef __cplusplus @@ -1976,6 +1986,10 @@ extern TclIntStubs *tclIntStubsPtr; #define TclSetNsPath \ (tclIntStubsPtr->tclSetNsPath) /* 227 */ #endif +#ifndef TclObjInterpProcCore +#define TclObjInterpProcCore \ + (tclIntStubsPtr->tclObjInterpProcCore) /* 228 */ +#endif #endif /* defined(USE_TCL_STUBS) && !defined(USE_TCL_STUB_PROCS) */ diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index 8310a9d..b9a75d4 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.134 2006/10/27 12:54:26 dkf Exp $ + * RCS: @(#) $Id: tclStubInit.c,v 1.135 2006/10/28 22:49:30 dkf Exp $ */ #include "tclInt.h" @@ -319,6 +319,7 @@ TclIntStubs tclIntStubs = { TclTraceDictPath, /* 225 */ TclObjBeingDeleted, /* 226 */ TclSetNsPath, /* 227 */ + TclObjInterpProcCore, /* 228 */ }; TclIntPlatStubs tclIntPlatStubs = { -- cgit v0.12