diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2008-09-04 16:34:47 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2008-09-04 16:34:47 (GMT) |
commit | dc278b028d2f80dcc48ee9cb4273d863d995bbae (patch) | |
tree | 513f93efb5fda3350047ea725e8400b357da4e6d /generic/tclExecute.c | |
parent | e72b23c2ef58f8fc0fe5d9f1b6fd9dc04caedefa (diff) | |
download | tcl-dc278b028d2f80dcc48ee9cb4273d863d995bbae.zip tcl-dc278b028d2f80dcc48ee9cb4273d863d995bbae.tar.gz tcl-dc278b028d2f80dcc48ee9cb4273d863d995bbae.tar.bz2 |
* generic/tclExecute.c (CACHE_STACK_INFO):
* tests/unsupported.test: restore the execEnv's bottomPtr, fix
for [Bug 2093188].
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r-- | generic/tclExecute.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index 453be92..308806c 100644 --- a/generic/tclExecute.c +++ b/generic/tclExecute.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclExecute.c,v 1.408 2008/08/23 01:48:26 msofer Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.409 2008/09/04 16:34:52 msofer Exp $ */ #include "tclInt.h" @@ -313,7 +313,8 @@ VarHashCreateVar( checkInterp = 1 #define DECACHE_STACK_INFO() \ - esPtr->tosPtr = tosPtr + esPtr->tosPtr = tosPtr; \ + iPtr->execEnvPtr->bottomPtr = bottomPtr /* * Macros used to access items on the Tcl evaluation stack. PUSH_OBJECT |