diff options
| author | dgp@users.sourceforge.net <dgp> | 2009-11-16 18:00:11 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2009-11-16 18:00:11 (GMT) |
| commit | b80b7145737b77557de124a5eb0d472f27c599a8 (patch) | |
| tree | 26a12433839436b7c432fcfc0b29c7557ad65873 /generic/tclBasic.c | |
| parent | 6e27fbe7b6b2d15ec54f2e4fbf044d6a3fa7d079 (diff) | |
| download | tcl-b80b7145737b77557de124a5eb0d472f27c599a8.zip tcl-b80b7145737b77557de124a5eb0d472f27c599a8.tar.gz tcl-b80b7145737b77557de124a5eb0d472f27c599a8.tar.bz2 | |
Revert mistaken commit
Diffstat (limited to 'generic/tclBasic.c')
| -rw-r--r-- | generic/tclBasic.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index c8ae5ae..cd7bd25 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -16,7 +16,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclBasic.c,v 1.408 2009/11/16 17:38:08 ferrieux Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.409 2009/11/16 18:00:11 dgp Exp $ */ #include "tclInt.h" @@ -530,9 +530,6 @@ Tcl_CreateInterp(void) iPtr->errorInfo = NULL; TclNewLiteralStringObj(iPtr->eiVar, "::errorInfo"); Tcl_IncrRefCount(iPtr->eiVar); - iPtr->errorStack = Tcl_NewListObj(0, NULL); - Tcl_IncrRefCount(iPtr->errorStack); - iPtr->resetErrorStack = 1; iPtr->errorCode = NULL; TclNewLiteralStringObj(iPtr->ecVar, "::errorCode"); Tcl_IncrRefCount(iPtr->ecVar); @@ -1473,7 +1470,6 @@ DeleteInterpProc( Tcl_DecrRefCount(iPtr->errorInfo); iPtr->errorInfo = NULL; } - Tcl_DecrRefCount(iPtr->errorStack); if (iPtr->returnOpts) { Tcl_DecrRefCount(iPtr->returnOpts); } @@ -8824,7 +8820,5 @@ TclInfoCoroutineCmd( * mode: c * c-basic-offset: 4 * fill-column: 78 - * tab-width: 8 - * indent-tabs-mode: nil * End: */ |
