summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.h
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2013-10-03 13:32:06 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2013-10-03 13:32:06 (GMT)
commitf9427cdbfd828dbabe79facdc3d757146c090563 (patch)
tree0fc8c55a7c7074e884924430835fce4b9eaeabcc /generic/tclCompile.h
parentc9e288f12b7d1802ea33bb58cc546f1a1ce153e1 (diff)
downloadtcl-f9427cdbfd828dbabe79facdc3d757146c090563.zip
tcl-f9427cdbfd828dbabe79facdc3d757146c090563.tar.gz
tcl-f9427cdbfd828dbabe79facdc3d757146c090563.tar.bz2
cleaner and faster 'string trim'
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r--generic/tclCompile.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h
index 08eb393..fa8d773 100644
--- a/generic/tclCompile.h
+++ b/generic/tclCompile.h
@@ -769,11 +769,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
+#define INST_STRTRIM 166
+#define INST_STRTRIM_LEFT 167
+#define INST_STRTRIM_RIGHT 168
/* The last opcode */
-#define LAST_INST_OPCODE 167
+#define LAST_INST_OPCODE 168
/*
* Table describing the Tcl bytecode instructions: their name (for displaying