diff options
| author | dgp@users.sourceforge.net <dgp> | 2008-06-20 19:23:23 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2008-06-20 19:23:23 (GMT) |
| commit | 1ea618c6d3d500b7fdabbd0181e62adf459dcf90 (patch) | |
| tree | 0e644758f52d7718407a6c283c2c79b8b65cbec9 /generic/tclInterp.c | |
| parent | 9a7bb816042c50a5771d5917fc13cd2c1afadf20 (diff) | |
| download | tcl-1ea618c6d3d500b7fdabbd0181e62adf459dcf90.zip tcl-1ea618c6d3d500b7fdabbd0181e62adf459dcf90.tar.gz tcl-1ea618c6d3d500b7fdabbd0181e62adf459dcf90.tar.bz2 | |
* generic/tclInterp.c: Fixed completely boneheaded mistake that
* tests/interp.test: [interp bgerror $slave] and [$slave bgerror]
would always act like [interp bgerror {}]. [Bug 1999035].
* tests/chanio.test: Corrected flawed tests revealed by a -debug 1
* tests/event.test: -singleproc 1 test suite run.
* tests/io.test:
Diffstat (limited to 'generic/tclInterp.c')
| -rw-r--r-- | generic/tclInterp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclInterp.c b/generic/tclInterp.c index 1f2921a..78772bd 100644 --- a/generic/tclInterp.c +++ b/generic/tclInterp.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInterp.c,v 1.83 2008/01/30 10:45:55 msofer Exp $ + * RCS: @(#) $Id: tclInterp.c,v 1.83.2.1 2008/06/20 19:23:25 dgp Exp $ */ #include "tclInt.h" @@ -2061,9 +2061,9 @@ SlaveBgerror( NULL); return TCL_ERROR; } - TclSetBgErrorHandler(interp, objv[0]); + TclSetBgErrorHandler(slaveInterp, objv[0]); } - Tcl_SetObjResult(interp, TclGetBgErrorHandler(interp)); + Tcl_SetObjResult(interp, TclGetBgErrorHandler(slaveInterp)); return TCL_OK; } |
