diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-09-02 12:11:01 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-09-02 12:11:01 (GMT) |
commit | 2bd794f7cc85201d24a257dff0b649c9dd1eb0a5 (patch) | |
tree | 7754802e4bd11708a3c967883846c3930f57ed4b /generic/tclInt.h | |
parent | 3b2cb79ab18e9506dfb66e2786a7ee04dd30a780 (diff) | |
download | tcl-2bd794f7cc85201d24a257dff0b649c9dd1eb0a5.zip tcl-2bd794f7cc85201d24a257dff0b649c9dd1eb0a5.tar.gz tcl-2bd794f7cc85201d24a257dff0b649c9dd1eb0a5.tar.bz2 |
Proposed patch for [d4e7780ca1681cd095dbd81fe264feff75c988f7|d4e7780ca1], by Gustaf Neumann
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 4f7ea6e..4d3c0b1 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -1677,11 +1677,13 @@ typedef struct Command { * (these last two flags are defined in tcl.h) */ -#define CMD_IS_DELETED 0x1 -#define CMD_TRACE_ACTIVE 0x2 -#define CMD_HAS_EXEC_TRACES 0x4 -#define CMD_COMPILES_EXPANDED 0x8 +#define CMD_IS_DELETED 0x01 +#define CMD_TRACE_ACTIVE 0x02 +#define CMD_HAS_EXEC_TRACES 0x04 +#define CMD_COMPILES_EXPANDED 0x08 #define CMD_REDEF_IN_PROGRESS 0x10 +#define CMD_VIA_RESOLVER 0x20 + /* *---------------------------------------------------------------- |