From 890a4089ea27937eca75c8a052830931f2668072 Mon Sep 17 00:00:00 2001 From: dkf Date: Fri, 27 Oct 2006 12:54:26 +0000 Subject: Regen --- generic/tclIntDecls.h | 13 ++++++++++++- generic/tclStubInit.c | 3 ++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/generic/tclIntDecls.h b/generic/tclIntDecls.h index 1b63197..8b5ad33 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.91 2006/10/27 12:33:51 dkf Exp $ + * RCS: @(#) $Id: tclIntDecls.h,v 1.92 2006/10/27 12:54:26 dkf Exp $ */ #ifndef _TCLINTDECLS @@ -1025,6 +1025,12 @@ EXTERN Tcl_Obj * TclTraceDictPath _ANSI_ARGS_((Tcl_Interp * interp, /* 226 */ EXTERN int TclObjBeingDeleted _ANSI_ARGS_((Tcl_Obj * objPtr)); #endif +#ifndef TclSetNsPath_TCL_DECLARED +#define TclSetNsPath_TCL_DECLARED +/* 227 */ +EXTERN void TclSetNsPath _ANSI_ARGS_((Namespace * nsPtr, + int pathLength, Tcl_Namespace * pathAry[])); +#endif typedef struct TclIntStubs { int magic; @@ -1272,6 +1278,7 @@ typedef struct TclIntStubs { TclPlatformType * (*tclGetPlatform) _ANSI_ARGS_((void)); /* 224 */ 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 */ } TclIntStubs; #ifdef __cplusplus @@ -1965,6 +1972,10 @@ extern TclIntStubs *tclIntStubsPtr; #define TclObjBeingDeleted \ (tclIntStubsPtr->tclObjBeingDeleted) /* 226 */ #endif +#ifndef TclSetNsPath +#define TclSetNsPath \ + (tclIntStubsPtr->tclSetNsPath) /* 227 */ +#endif #endif /* defined(USE_TCL_STUBS) && !defined(USE_TCL_STUB_PROCS) */ diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index 535566f..8310a9d 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.133 2006/09/30 19:00:13 msofer Exp $ + * RCS: @(#) $Id: tclStubInit.c,v 1.134 2006/10/27 12:54:26 dkf Exp $ */ #include "tclInt.h" @@ -318,6 +318,7 @@ TclIntStubs tclIntStubs = { TclGetPlatform, /* 224 */ TclTraceDictPath, /* 225 */ TclObjBeingDeleted, /* 226 */ + TclSetNsPath, /* 227 */ }; TclIntPlatStubs tclIntPlatStubs = { -- cgit v0.12