summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.h
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2013-09-30 03:00:06 (GMT)
committerdkf <dkf@noemail.net>2013-09-30 03:00:06 (GMT)
commitd71e2fdf6660d0c6cc36992b5bc3e51dc5aa9a4f (patch)
tree3137d2b83c6acf8dbe087cfe4337fd40a986670a /generic/tclCompile.h
parent26988ebdc9e21a3df7c74063a528606d7d4b07d5 (diff)
downloadtcl-d71e2fdf6660d0c6cc36992b5bc3e51dc5aa9a4f.zip
tcl-d71e2fdf6660d0c6cc36992b5bc3e51dc5aa9a4f.tar.gz
tcl-d71e2fdf6660d0c6cc36992b5bc3e51dc5aa9a4f.tar.bz2
First attempt at [string trim] compilation.
FossilOrigin-Name: 62a0ec46d839c6243b0d90d75bdc87edc5fca41f
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r--generic/tclCompile.h6
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