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/tcl.h | |
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/tcl.h')
-rw-r--r-- | generic/tcl.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index c67cad7..cede805 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tcl.h,v 1.225 2006/10/27 12:44:08 dkf Exp $ + * RCS: @(#) $Id: tcl.h,v 1.226 2006/10/31 15:23:40 msofer Exp $ */ #ifndef _TCL @@ -1067,14 +1067,11 @@ typedef struct Tcl_DString { * o Cut out of error traces * o Don't reset the flags controlling ensemble * error message rewriting. - * TCL_EVAL_NOREWRITE Do not update the interp's last call info; - * used by the ensemble rewrite machinery */ #define TCL_NO_EVAL 0x10000 #define TCL_EVAL_GLOBAL 0x20000 #define TCL_EVAL_DIRECT 0x40000 #define TCL_EVAL_INVOKE 0x80000 -#define TCL_EVAL_NOREWRITE 0x100000 /* * Special freeProc values that may be passed to Tcl_SetResult (see the man |