diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2014-01-13 08:06:43 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2014-01-13 08:06:43 (GMT) |
commit | aa2c40934df3fdefbb39338f7eef44e79c3c551e (patch) | |
tree | b9160847863784dfe55e508ea2eab9da956df310 /generic/tclCompile.h | |
parent | c3c6e803684022dcc788ddbfc4a59a6d0dfde102 (diff) | |
download | tcl-aa2c40934df3fdefbb39338f7eef44e79c3c551e.zip tcl-aa2c40934df3fdefbb39338f7eef44e79c3c551e.tar.gz tcl-aa2c40934df3fdefbb39338f7eef44e79c3c551e.tar.bz2 |
extend [string is] to booleans
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index 6bf5daf..a08a93a 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -793,9 +793,10 @@ typedef struct ByteCode { #define INST_TCLOO_NEXT 179 #define INST_NUM_TYPE 180 +#define INST_TRY_CVT_TO_BOOLEAN 181 /* The last opcode */ -#define LAST_INST_OPCODE 180 +#define LAST_INST_OPCODE 181 /* * Table describing the Tcl bytecode instructions: their name (for displaying |