summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
Diffstat (limited to 'generic')
-rw-r--r--generic/tcl.decls2
-rw-r--r--generic/tclDecls.h9
-rw-r--r--generic/tclStubInit.c3
3 files changed, 9 insertions, 5 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls
index 4e8f20a..a89e64f 100644
--- a/generic/tcl.decls
+++ b/generic/tcl.decls
@@ -2569,7 +2569,7 @@ declare 685 {
# ----- BASELINE -- FOR -- 8.7.0 / 9.0.0 ----- #
-declare 687 {
+declare 688 {
void TclUnusedStubEntry(void)
}
diff --git a/generic/tclDecls.h b/generic/tclDecls.h
index e2901fb..c5c7526 100644
--- a/generic/tclDecls.h
+++ b/generic/tclDecls.h
@@ -2050,7 +2050,8 @@ EXTERN int Tcl_GetWideUIntFromObj(Tcl_Interp *interp,
/* 685 */
EXTERN Tcl_Obj * Tcl_DStringToObj(Tcl_DString *dsPtr);
/* Slot 686 is reserved */
-/* 687 */
+/* Slot 687 is reserved */
+/* 688 */
EXTERN void TclUnusedStubEntry(void);
typedef struct {
@@ -2774,7 +2775,8 @@ typedef struct TclStubs {
int (*tcl_GetWideUIntFromObj) (Tcl_Interp *interp, Tcl_Obj *objPtr, Tcl_WideUInt *uwidePtr); /* 684 */
Tcl_Obj * (*tcl_DStringToObj) (Tcl_DString *dsPtr); /* 685 */
void (*reserved686)(void);
- void (*tclUnusedStubEntry) (void); /* 687 */
+ void (*reserved687)(void);
+ void (*tclUnusedStubEntry) (void); /* 688 */
} TclStubs;
extern const TclStubs *tclStubsPtr;
@@ -4178,8 +4180,9 @@ extern const TclStubs *tclStubsPtr;
#define Tcl_DStringToObj \
(tclStubsPtr->tcl_DStringToObj) /* 685 */
/* Slot 686 is reserved */
+/* Slot 687 is reserved */
#define TclUnusedStubEntry \
- (tclStubsPtr->tclUnusedStubEntry) /* 687 */
+ (tclStubsPtr->tclUnusedStubEntry) /* 688 */
#endif /* defined(USE_TCL_STUBS) */
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c
index ddc0bc9..bab1935 100644
--- a/generic/tclStubInit.c
+++ b/generic/tclStubInit.c
@@ -2058,7 +2058,8 @@ const TclStubs tclStubs = {
Tcl_GetWideUIntFromObj, /* 684 */
Tcl_DStringToObj, /* 685 */
0, /* 686 */
- TclUnusedStubEntry, /* 687 */
+ 0, /* 687 */
+ TclUnusedStubEntry, /* 688 */
};
/* !END!: Do not edit above this line. */