diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-09-07 13:34:41 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-09-07 13:34:41 (GMT) |
| commit | 4ef0c69aaadaecd18748067dce66645646fcbd88 (patch) | |
| tree | 8eefd8a982aaa8cb93031d34bb939751e833acb4 /generic/tclInt.h | |
| parent | ab18c108f78f24eb176b3bbca4bc397da9a9a4b3 (diff) | |
| parent | 7660c04aff6e08ad1b66b344d67aff0a26f58e11 (diff) | |
| download | tcl-4ef0c69aaadaecd18748067dce66645646fcbd88.zip tcl-4ef0c69aaadaecd18748067dce66645646fcbd88.tar.gz tcl-4ef0c69aaadaecd18748067dce66645646fcbd88.tar.bz2 | |
Fix [d4e7780ca1681cd095dbd81fe264feff75c988f7|d4e7780ca1]: "global" cmd literal sharing vs. per-interp resolvers
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 b39c8ea..da1b5c5 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -1690,11 +1690,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 + /* *---------------------------------------------------------------- |
