diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2009-03-21 12:24:48 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2009-03-21 12:24:48 (GMT) |
commit | 24ad5055202aab332c748c20e2bd0471e3aab234 (patch) | |
tree | bb3dee3248aee3a5159b68b525c8d1d998b8a2b2 /generic/tclInterp.c | |
parent | 260a0df5b742697276b762bcddd34c141aed9942 (diff) | |
download | tcl-24ad5055202aab332c748c20e2bd0471e3aab234.zip tcl-24ad5055202aab332c748c20e2bd0471e3aab234.tar.gz tcl-24ad5055202aab332c748c20e2bd0471e3aab234.tar.bz2 |
* generic/tclBasic.c: fixed "leaks" in aliases, imports and
* generic/tclInt.h: ensembles. Only remaining known leak
* generic/tclInterp.c: is in ensemble unknown dispatch (as it
* generic/tclNamesp.c: not NR-enabled)
* tests/tailcall.test:
Diffstat (limited to 'generic/tclInterp.c')
-rw-r--r-- | generic/tclInterp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclInterp.c b/generic/tclInterp.c index 3105dc9..0972602 100644 --- a/generic/tclInterp.c +++ b/generic/tclInterp.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInterp.c,v 1.104 2009/02/10 22:50:04 nijtmans Exp $ + * RCS: @(#) $Id: tclInterp.c,v 1.105 2009/03/21 12:24:49 msofer Exp $ */ #include "tclInt.h" @@ -1807,6 +1807,7 @@ AliasNRCmd( if (isRootEnsemble) { TclNRAddCallback(interp, TclClearRootEnsemble, NULL, NULL, NULL, NULL); } + iPtr->evalFlags |= TCL_EVAL_REDIRECT; return Tcl_NREvalObj(interp, listPtr, flags); } |