summaryrefslogtreecommitdiffstats
path: root/generic/tclInterp.c
diff options
context:
space:
mode:
authormsofer <msofer@noemail.net>2009-03-21 12:24:48 (GMT)
committermsofer <msofer@noemail.net>2009-03-21 12:24:48 (GMT)
commit643422a63f66d9ddd4cb95e550b1bfe01f0a5891 (patch)
treebb3dee3248aee3a5159b68b525c8d1d998b8a2b2 /generic/tclInterp.c
parentbdde12990248ea09d93e05397ccdc0c46bc99747 (diff)
downloadtcl-643422a63f66d9ddd4cb95e550b1bfe01f0a5891.zip
tcl-643422a63f66d9ddd4cb95e550b1bfe01f0a5891.tar.gz
tcl-643422a63f66d9ddd4cb95e550b1bfe01f0a5891.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: FossilOrigin-Name: 5da5e7593d1d5a80663cf907a3e47bd70b350798
Diffstat (limited to 'generic/tclInterp.c')
-rw-r--r--generic/tclInterp.c3
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);
}