diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-08-12 07:10:57 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-08-12 07:10:57 (GMT) |
commit | 330e4967abb577c06a94a635e415c031030372f8 (patch) | |
tree | 905b549baefb980bd287f6bca0d6a60eeadfb3e8 /generic/tclInt.h | |
parent | 39db46fbe1fa4d967e7a31b5b6ba03fd36cefffa (diff) | |
download | tcl-330e4967abb577c06a94a635e415c031030372f8.zip tcl-330e4967abb577c06a94a635e415c031030372f8.tar.gz tcl-330e4967abb577c06a94a635e415c031030372f8.tar.bz2 |
Fix value of CMD_DEAD flag
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 1e90b70..317ae1f 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -1682,7 +1682,7 @@ typedef struct Command { #define CMD_COMPILES_EXPANDED 0x08 #define CMD_REDEF_IN_PROGRESS 0x10 #define CMD_VIA_RESOLVER 0x20 -#define CMD_DEAD 0x30 +#define CMD_DEAD 0x40 /* |