diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2006-10-31 15:23:40 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2006-10-31 15:23:40 (GMT) |
commit | 20c1156972864f916da62a217137e346eb93ac79 (patch) | |
tree | f3563690ba220879dc87b79bb6a46ffb7852c33a /generic/tclInterp.c | |
parent | 794852278f00d531ee4a0f3a95c2a993e9ffe33d (diff) | |
download | tcl-20c1156972864f916da62a217137e346eb93ac79.zip tcl-20c1156972864f916da62a217137e346eb93ac79.tar.gz tcl-20c1156972864f916da62a217137e346eb93ac79.tar.bz2 |
* generic/tclBasic.c:
* generic/tcl.h:
* generic/tclInterp.c:
* generic/tclNamesp.c: removing the flag bit TCL_EVAL_NOREWRITE,
the last remnant of the callObjc/v fiasco. It is not needed, as it
is now always set and checked or'ed with TCL_EVAL_INVOKE.
Diffstat (limited to 'generic/tclInterp.c')
-rw-r--r-- | generic/tclInterp.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/generic/tclInterp.c b/generic/tclInterp.c index 0156391..f4d14f5 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.66 2006/10/26 17:22:17 msofer Exp $ + * RCS: @(#) $Id: tclInterp.c,v 1.67 2006/10/31 15:23:41 msofer Exp $ */ #include "tclInt.h" @@ -1741,12 +1741,10 @@ AliasObjCmd( if (targetInterp != interp) { Tcl_Preserve((ClientData) targetInterp); - result = Tcl_EvalObjv(targetInterp, cmdc, cmdv, - TCL_EVAL_INVOKE|TCL_EVAL_NOREWRITE); + result = Tcl_EvalObjv(targetInterp, cmdc, cmdv, TCL_EVAL_INVOKE); TclTransferResult(targetInterp, result, interp); } else { - result = Tcl_EvalObjv(targetInterp, cmdc, cmdv, - TCL_EVAL_INVOKE|TCL_EVAL_NOREWRITE); + result = Tcl_EvalObjv(targetInterp, cmdc, cmdv, TCL_EVAL_INVOKE); } if (isRootEnsemble) { |