diff options
author | dgp <dgp@users.sourceforge.net> | 2004-10-21 17:07:28 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-10-21 17:07:28 (GMT) |
commit | 055d04eb7c2503a7531fe07aa46252b2476e1db4 (patch) | |
tree | 9f8028b7ed3ca8902a548293045e037167ee023d /generic/tclBasic.c | |
parent | 302b35c0ac3658a27a30f795d3229e8a43eb5379 (diff) | |
download | tcl-055d04eb7c2503a7531fe07aa46252b2476e1db4.zip tcl-055d04eb7c2503a7531fe07aa46252b2476e1db4.tar.gz tcl-055d04eb7c2503a7531fe07aa46252b2476e1db4.tar.bz2 |
* generic/tclInt.h (Interp):
* generic/tclBasic.c (Tcl_CreateInterp,Tcl_DeleteInterp):
* generic/tclResult.c (GetKeys,ReleaseKeys,etc.):
Moved the key values of the return options dictionary out of
private fields of the Interp struct and into thread-static
values managed in tclResult.c.
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 7451b69..b37e20d 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -13,7 +13,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.131 2004/10/21 15:19:46 dgp Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.132 2004/10/21 17:07:31 dgp Exp $ */ #include "tclInt.h" @@ -221,18 +221,6 @@ Tcl_CreateInterp() iPtr->varFramePtr = NULL; iPtr->activeVarTracePtr = NULL; - iPtr->returnCodeKey = Tcl_NewStringObj("-code",-1); - Tcl_IncrRefCount(iPtr->returnCodeKey); - iPtr->returnErrorcodeKey = Tcl_NewStringObj("-errorcode",-1); - Tcl_IncrRefCount(iPtr->returnErrorcodeKey); - iPtr->returnErrorinfoKey = Tcl_NewStringObj("-errorinfo",-1); - Tcl_IncrRefCount(iPtr->returnErrorinfoKey); - iPtr->returnErrorlineKey = Tcl_NewStringObj("-errorline",-1); - Tcl_IncrRefCount(iPtr->returnErrorlineKey); - iPtr->returnLevelKey = Tcl_NewStringObj("-level",-1); - Tcl_IncrRefCount(iPtr->returnLevelKey); - iPtr->returnOptionsKey = Tcl_NewStringObj("-options",-1); - Tcl_IncrRefCount(iPtr->returnOptionsKey); iPtr->returnOpts = NULL; iPtr->errorInfo = NULL; iPtr->eiVar = Tcl_NewStringObj("errorInfo", -1); @@ -994,12 +982,6 @@ DeleteInterpProc(interp) if (iPtr->returnOpts) { Tcl_DecrRefCount(iPtr->returnOpts); } - Tcl_DecrRefCount(iPtr->returnCodeKey); - Tcl_DecrRefCount(iPtr->returnErrorcodeKey); - Tcl_DecrRefCount(iPtr->returnErrorinfoKey); - Tcl_DecrRefCount(iPtr->returnErrorlineKey); - Tcl_DecrRefCount(iPtr->returnLevelKey); - Tcl_DecrRefCount(iPtr->returnOptionsKey); if (iPtr->appendResult != NULL) { ckfree(iPtr->appendResult); iPtr->appendResult = NULL; |