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/tclNamesp.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/tclNamesp.c')
-rw-r--r-- | generic/tclNamesp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclNamesp.c b/generic/tclNamesp.c index fe4a3f8..bbb8a7b 100644 --- a/generic/tclNamesp.c +++ b/generic/tclNamesp.c @@ -22,7 +22,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclNamesp.c,v 1.112 2006/10/31 13:46:32 dkf Exp $ + * RCS: @(#) $Id: tclNamesp.c,v 1.113 2006/10/31 15:23:41 msofer Exp $ */ #include "tclInt.h" @@ -6282,7 +6282,7 @@ NsEnsembleImplementationCmd( memcpy(tempObjv, prefixObjv, sizeof(Tcl_Obj *) * prefixObjc); memcpy(tempObjv+prefixObjc, objv+2, sizeof(Tcl_Obj *) * (objc-2)); result = Tcl_EvalObjv(interp, objc-2+prefixObjc, tempObjv, - TCL_EVAL_INVOKE|TCL_EVAL_NOREWRITE); + TCL_EVAL_INVOKE); Tcl_DecrRefCount(prefixObj); TclStackFree(interp); if (isRootEnsemble) { |