diff options
| author | dgp@users.sourceforge.net <dgp> | 2004-11-13 00:19:03 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2004-11-13 00:19:03 (GMT) |
| commit | 732609f43b8be148a18a7b9ea06af6404fe5bfbf (patch) | |
| tree | bec4c44844a8c5073250e391a03c4e121f4dd421 /generic/tclCmdAH.c | |
| parent | 2a7716003a69a750da5f63681523deca0c1aac8c (diff) | |
| download | tcl-732609f43b8be148a18a7b9ea06af6404fe5bfbf.zip tcl-732609f43b8be148a18a7b9ea06af6404fe5bfbf.tar.gz tcl-732609f43b8be148a18a7b9ea06af6404fe5bfbf.tar.bz2 | |
TIP #221 IMPLEMENTATION
* generic/tclBasic.c: Define [::tcl::Bgerror] in new interps.
* generic/tclEvent.c: Update Tcl_BackgroundError to make use
of the registered [interp bgerror] command.
* generic/tclInterp.c: New [interp bgerror] subcommand.
* tests/interp.test: syntax tests updated.
TIP #226 IMPLEMENTATION
* generic/tcl.decls: Stubs for Tcl_(Save|Restore|Discard)InterpState
* generic/tcl.h: New public opaque type, Tcl_InterpState.
* generic/tclInt.h: Drop old private declarations. Add
Tcl(Get|Set)BgErrorHandler
* generic/tclResult.c: Tcl_*InterpState implementations.
* generic/tclDictObj.c: Update callers.
* generic/tclIOGT.c:
* generic/tclTrace.c:
TIP #227 IMPLEMENTATION
* generic/tcl.decls: Stubs for Tcl_(Get|Set)ReturnOptions.
* generic/tclInt.h: Drop old private declarations.
* generic/tclResult.c: Tcl_*ReturnOptions implementations.
* generic/tclCmdAH.c: Update callers.
* generic/tclMain.c:
Diffstat (limited to 'generic/tclCmdAH.c')
| -rw-r--r-- | generic/tclCmdAH.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclCmdAH.c b/generic/tclCmdAH.c index e3c95bd..108ea72 100644 --- a/generic/tclCmdAH.c +++ b/generic/tclCmdAH.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCmdAH.c,v 1.56 2004/10/21 15:19:46 dgp Exp $ + * RCS: @(#) $Id: tclCmdAH.c,v 1.57 2004/11/13 00:19:07 dgp Exp $ */ #include "tclInt.h" @@ -269,7 +269,7 @@ Tcl_CatchObjCmd(dummy, interp, objc, objv) } } if (objc == 4) { - Tcl_Obj *options = TclGetReturnOptions(interp, result); + Tcl_Obj *options = Tcl_GetReturnOptions(interp, result); if (NULL == Tcl_ObjSetVar2(interp, optionVarNamePtr, NULL, options, 0)) { Tcl_DecrRefCount(options); @@ -577,7 +577,7 @@ Tcl_ErrorObjCmd(dummy, interp, objc, objv) } Tcl_SetObjResult(interp, objv[1]); - return TclSetReturnOptions(interp, options); + return Tcl_SetReturnOptions(interp, options); } /* |
