diff options
author | dgp <dgp@users.sourceforge.net> | 2013-08-29 17:59:36 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2013-08-29 17:59:36 (GMT) |
commit | 012f63b012e81a2c53f6fef7a69cf7672d630a94 (patch) | |
tree | 34d17a395fef9e9fccdd3df1e9fa3e58469bdb0a /generic/tclInt.h | |
parent | 09922916778d4f09686dbdb94e6e4716ab9b8f59 (diff) | |
download | tcl-012f63b012e81a2c53f6fef7a69cf7672d630a94.zip tcl-012f63b012e81a2c53f6fef7a69cf7672d630a94.tar.gz tcl-012f63b012e81a2c53f6fef7a69cf7672d630a94.tar.bz2 |
New internal eval flag value so that all TclNREvalObjv() callers thatbug_2502002
pre-resolve command names can choose whether or not TclNREvalObjv() should
attempt to re-do the resolution from objv[0] when something goes wrong.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index e0e694f..380284f 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -2201,6 +2201,7 @@ typedef struct Interp { #define TCL_ALLOW_EXCEPTIONS 0x04 #define TCL_EVAL_FILE 0x02 #define TCL_EVAL_SOURCE_IN_FRAME 0x10 +#define TCL_EVAL_NORESOLVE 0x20 /* * Flag bits for Interp structures: |