diff options
| author | dgp@users.sourceforge.net <dgp> | 2008-12-02 19:40:40 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2008-12-02 19:40:40 (GMT) |
| commit | 9f19ebbe40fac4fbc8e7d2bae82f809c583f1390 (patch) | |
| tree | 6f599afa8fd14946dfce722886ee48d15e2f5046 /generic/tclOOBasic.c | |
| parent | 2e94caf74aa764d100357ff4fdfb7dda07f1102d (diff) | |
| download | tcl-9f19ebbe40fac4fbc8e7d2bae82f809c583f1390.zip tcl-9f19ebbe40fac4fbc8e7d2bae82f809c583f1390.tar.gz tcl-9f19ebbe40fac4fbc8e7d2bae82f809c583f1390.tar.bz2 | |
TIP #336 IMPLEMENTATION
* generic/tcl.decls: New routines Tcl_(Get|Set)ErrorLine.
* generic/tcl.h: Dropped default access to interp->errorLine.
* generic/tclCmdAH.c: Restore it with -DUSE_INTERP_ERRORLINE.
* generic/tclCmdMZ.c: Updated callers.
* generic/tclDictObj.c:
* generic/tclIOUtil.c:
* generic/tclNamesp.c:
* generic/tclOOBasic.c:
* generic/tclOODefinedCmds.c:
* generic/tclOOMethod.c:
* generic/tclProc.c:
* generic/tclResult.c:
* generic/tclDecls.h: make genstubs
* generic/tclStubInit.c:
Diffstat (limited to 'generic/tclOOBasic.c')
| -rw-r--r-- | generic/tclOOBasic.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclOOBasic.c b/generic/tclOOBasic.c index b52f90c..887e80c 100644 --- a/generic/tclOOBasic.c +++ b/generic/tclOOBasic.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclOOBasic.c,v 1.15 2008/11/01 00:04:26 dkf Exp $ + * RCS: @(#) $Id: tclOOBasic.c,v 1.16 2008/12/02 19:40:41 dgp Exp $ */ #ifdef HAVE_CONFIG_H @@ -358,11 +358,11 @@ FinalizeEval( Tcl_AppendObjToErrorInfo(interp, Tcl_ObjPrintf( "\n (in \"%s eval\" script line %d)", - TclGetString(objnameObj), interp->errorLine)); + TclGetString(objnameObj), Tcl_GetErrorLine(interp))); } else { Tcl_AppendObjToErrorInfo(interp, Tcl_ObjPrintf( "\n (in \"my eval\" script line %d)", - interp->errorLine)); + Tcl_GetErrorLine(interp))); } } @@ -1010,7 +1010,7 @@ UpcatchCallback( iPtr->varFramePtr = savedFramePtr; if (rewind || Tcl_LimitExceeded(interp)) { Tcl_AppendObjToErrorInfo(interp, Tcl_ObjPrintf( - "\n (\"UpCatch\" body line %d)", interp->errorLine)); + "\n (\"UpCatch\" body line %d)", Tcl_GetErrorLine(interp))); return TCL_ERROR; } resultObj[0] = Tcl_GetObjResult(interp); |
