diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-08-29 20:55:58 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-08-29 20:55:58 (GMT) |
| commit | c08a867e8bdb9f3d8650890d0c49f1de96866863 (patch) | |
| tree | 01d66fe189b7fb6a214ca012b5dd3564f31b1fe1 /generic/tclIntDecls.h | |
| parent | c1b4a8688f530f2fb6ab049c3304c1d11e385ebc (diff) | |
| parent | b0aac11cdb0e31babc4c89aeda27223f4a731162 (diff) | |
| download | tcl-c08a867e8bdb9f3d8650890d0c49f1de96866863.zip tcl-c08a867e8bdb9f3d8650890d0c49f1de96866863.tar.gz tcl-c08a867e8bdb9f3d8650890d0c49f1de96866863.tar.bz2 | |
Add 2 unused (internal) stub entries
Diffstat (limited to 'generic/tclIntDecls.h')
| -rw-r--r-- | generic/tclIntDecls.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/generic/tclIntDecls.h b/generic/tclIntDecls.h index 27fbb86..0282259 100644 --- a/generic/tclIntDecls.h +++ b/generic/tclIntDecls.h @@ -645,7 +645,8 @@ EXTERN void TclStaticPackage(Tcl_Interp *interp, Tcl_PackageInitProc *safeInitProc); /* Slot 258 is reserved */ /* Slot 259 is reserved */ -/* 260 */ +/* Slot 260 is reserved */ +/* 261 */ EXTERN void TclUnusedStubEntry(void); typedef struct TclIntStubs { @@ -912,7 +913,8 @@ typedef struct TclIntStubs { void (*tclStaticPackage) (Tcl_Interp *interp, const char *prefix, Tcl_PackageInitProc *initProc, Tcl_PackageInitProc *safeInitProc); /* 257 */ void (*reserved258)(void); void (*reserved259)(void); - void (*tclUnusedStubEntry) (void); /* 260 */ + void (*reserved260)(void); + void (*tclUnusedStubEntry) (void); /* 261 */ } TclIntStubs; extern const TclIntStubs *tclIntStubsPtr; @@ -1358,8 +1360,9 @@ extern const TclIntStubs *tclIntStubsPtr; (tclIntStubsPtr->tclStaticPackage) /* 257 */ /* Slot 258 is reserved */ /* Slot 259 is reserved */ +/* Slot 260 is reserved */ #define TclUnusedStubEntry \ - (tclIntStubsPtr->tclUnusedStubEntry) /* 260 */ + (tclIntStubsPtr->tclUnusedStubEntry) /* 261 */ #endif /* defined(USE_TCL_STUBS) */ |
