diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-07 11:06:16 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-07 11:06:16 (GMT) |
commit | 948149043162c4a2fa840e6c242e4bf31fe80dba (patch) | |
tree | 464b6974dc77c89ba3ed33a782f55dd718f04105 /generic/tcl.decls | |
parent | 816ab7a3aa86fad4029569275897b1d8feb0f89d (diff) | |
download | tcl-948149043162c4a2fa840e6c242e4bf31fe80dba.zip tcl-948149043162c4a2fa840e6c242e4bf31fe80dba.tar.gz tcl-948149043162c4a2fa840e6c242e4bf31fe80dba.tar.bz2 |
Extend the public and private stub tables with dummy NULL entries, up to the size of the Tcl 8.6 stub tables.
This makes it easier to debug extensions which use Tcl 8.5/8.6 features but (erroneously) are attempted to be loaded in Tcl 8.4.
Diffstat (limited to 'generic/tcl.decls')
-rw-r--r-- | generic/tcl.decls | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls index 19bacc3..b8d8d7d 100644 --- a/generic/tcl.decls +++ b/generic/tcl.decls @@ -1795,6 +1795,10 @@ declare 573 { int objc, Tcl_Obj *const objv[], ClientData *clientDataPtr) } +declare 630 { + void TclUnusedStubEntry(void) +} + ############################################################################## # Define the platform specific public Tcl interface. These functions are only |