diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2008-07-14 00:11:32 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2008-07-14 00:11:32 (GMT) |
commit | 4e378306f429f7d5e125b91cecf54ef4fcf6b31b (patch) | |
tree | 1724c53491a08f1824f58d41d4e1bbc425c01493 /generic/tclBasic.c | |
parent | ad35d9b5b7a3de682d371c0bb686815f1c5e849e (diff) | |
download | tcl-4e378306f429f7d5e125b91cecf54ef4fcf6b31b.zip tcl-4e378306f429f7d5e125b91cecf54ef4fcf6b31b.tar.gz tcl-4e378306f429f7d5e125b91cecf54ef4fcf6b31b.tar.bz2 |
* generic/tclBasic.c.: NRE left too many calls to
* generic/tclExecute.c: TclResetCancellation lying around: it
* generic/tclProc.c: only needs to be called prior to any
iPtr->numLevels++. Thanks mistachkin.
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 174a74f..07b3fb5 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.307 2008/07/13 22:42:25 msofer Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.308 2008/07/14 00:11:32 msofer Exp $ */ #include "tclInt.h" @@ -5041,9 +5041,6 @@ TclEvalEx( eeFramePtr->line = lines; iPtr->cmdFramePtr = eeFramePtr; - - TclResetCancellation(interp, 0); - code = Tcl_EvalObjv(interp, objectsUsed, objv, TCL_EVAL_NOERR); iPtr->cmdFramePtr = iPtr->cmdFramePtr->nextPtr; |