summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.c
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.c
parentc9e288f12b7d1802ea33bb58cc546f1a1ce153e1 (diff)
downloadtcl-f9427cdbfd828dbabe79facdc3d757146c090563.zip
tcl-f9427cdbfd828dbabe79facdc3d757146c090563.tar.gz
tcl-f9427cdbfd828dbabe79facdc3d757146c090563.tar.bz2
cleaner and faster 'string trim'
Diffstat (limited to 'generic/tclCompile.c')
-rw-r--r--generic/tclCompile.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c
index cdedbda..7e72d84 100644
--- a/generic/tclCompile.c
+++ b/generic/tclCompile.c
@@ -545,6 +545,11 @@ InstructionDesc const tclInstructionTable[] = {
/* Drops an element from the auxiliary stack, popping stack elements
* until the matching stack depth is reached. */
+ {"strtrim", 1, -1, 0, {OPERAND_NONE}},
+ /* [string trim] core: removes the characters (designated by the value
+ * at the top of the stack) from both ends of the string and pushes
+ * the resulting string.
+ * Stack: ... string charset => ... trimmedString */
{"strtrimLeft", 1, -1, 0, {OPERAND_NONE}},
/* [string trimleft] core: removes the characters (designated by the
* value at the top of the stack) from the left of the string and