summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r--generic/tclBasic.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index b50234b..53be9de 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.358 2008/08/21 21:01:23 msofer Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.359 2008/08/21 23:57:42 msofer Exp $
*/
#include "tclInt.h"
@@ -8173,7 +8173,6 @@ PlugCoroutineChains(
corPtr->base.framePtr->callerVarPtr = corPtr->caller.varFramePtr;
corPtr->base.cmdFramePtr->nextPtr = corPtr->caller.cmdFramePtr;
- corPtr->levelOffset = iPtr->cmdFramePtr->level;
}
static int
@@ -8190,12 +8189,6 @@ NRCoroutineFirstCallback(
tmpPtr = tmpPtr->nextPtr;
}
- /*
- * Set the base cmdFrame level to zero, it will be computed using the
- * offset.
- */
-
- tmpPtr->level = 0;
corPtr->base.cmdFramePtr = tmpPtr;
}
@@ -8396,8 +8389,6 @@ TclNRCoroutineObjCmd(
* correct. The offset will be fixed for later runs.
*/
- corPtr->levelOffset = 0;
-
Tcl_DStringInit(&ds);
if (nsPtr != iPtr->globalNsPtr) {
Tcl_DStringAppend(&ds, nsPtr->fullName, -1);