diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2013-09-30 03:00:06 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2013-09-30 03:00:06 (GMT) |
commit | 11fdcc3fedcd680e93a93d28bf862d388ada3f9d (patch) | |
tree | 3137d2b83c6acf8dbe087cfe4337fd40a986670a /generic/tclCompile.h | |
parent | 77befed765bd876b11882607e8bdf4eb976df127 (diff) | |
download | tcl-11fdcc3fedcd680e93a93d28bf862d388ada3f9d.zip tcl-11fdcc3fedcd680e93a93d28bf862d388ada3f9d.tar.gz tcl-11fdcc3fedcd680e93a93d28bf862d388ada3f9d.tar.bz2 |
First attempt at [string trim] compilation.
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index 5660055..08eb393 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -768,8 +768,12 @@ typedef struct ByteCode { #define INST_EXPAND_DROP 165 +/* For compilation of [string trim] and related */ +#define INST_STRTRIM_LEFT 166 +#define INST_STRTRIM_RIGHT 167 + /* The last opcode */ -#define LAST_INST_OPCODE 165 +#define LAST_INST_OPCODE 167 /* * Table describing the Tcl bytecode instructions: their name (for displaying |