diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-12 21:57:24 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-12 21:57:24 (GMT) |
commit | 84b9c7728c8f168edce68d529ddac68a5056e766 (patch) | |
tree | 95dc63ae62343b7f4bc6b8d761106a05151f7639 /generic/tclStubInit.c | |
parent | 1092d1065d97d23b48062e4390604b39ff939aca (diff) | |
download | tcl-84b9c7728c8f168edce68d529ddac68a5056e766.zip tcl-84b9c7728c8f168edce68d529ddac68a5056e766.tar.gz tcl-84b9c7728c8f168edce68d529ddac68a5056e766.tar.bz2 |
Put back TclBackgroundException in internal stub table, so extensions using this, compiled against 8.5 headers still run in Tcl 8.6.
Diffstat (limited to 'generic/tclStubInit.c')
-rw-r--r-- | generic/tclStubInit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index 88ada19..14c838f 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -41,6 +41,7 @@ #undef Tcl_FindExecutable #undef TclpGetPid #undef TclSockMinimumBuffers +#define TclBackgroundException Tcl_BackgroundException /* See bug 510001: TclSockMinimumBuffers needs plat imp */ #ifdef _WIN64 @@ -425,7 +426,7 @@ static const TclIntStubs tclIntStubs = { TclGetSrcInfoForPc, /* 233 */ TclVarHashCreateVar, /* 234 */ TclInitVarHashTable, /* 235 */ - 0, /* 236 */ + TclBackgroundException, /* 236 */ TclResetCancellation, /* 237 */ TclNRInterpProc, /* 238 */ TclNRInterpProcCore, /* 239 */ |