diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2012-02-15 20:43:08 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2012-02-15 20:43:08 (GMT) |
commit | 182448a5403990b1f583b5f9cf6cf6d8e2b7c8de (patch) | |
tree | 0c8ee86e4a1dfdbe9ad52a7e66349e03ea8ad569 /generic/tclInt.h | |
parent | ef8842098dc6103ef6fc6fc7deb1b7e5395e85a2 (diff) | |
download | tcl-182448a5403990b1f583b5f9cf6cf6d8e2b7c8de.zip tcl-182448a5403990b1f583b5f9cf6cf6d8e2b7c8de.tar.gz tcl-182448a5403990b1f583b5f9cf6cf6d8e2b7c8de.tar.bz2 |
* generic/tclCompCmds.c (TclCompileLreplaceCmd): Added a compilation
strategy for [lreplace] that tackles the cases which are equivalent to
a static [lrange].
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 37fce70..08b3f70 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -3550,6 +3550,9 @@ MODULE_SCOPE int TclCompileLlengthCmd(Tcl_Interp *interp, MODULE_SCOPE int TclCompileLrangeCmd(Tcl_Interp *interp, Tcl_Parse *parsePtr, Command *cmdPtr, struct CompileEnv *envPtr); +MODULE_SCOPE int TclCompileLreplaceCmd(Tcl_Interp *interp, + Tcl_Parse *parsePtr, Command *cmdPtr, + struct CompileEnv *envPtr); MODULE_SCOPE int TclCompileLsetCmd(Tcl_Interp *interp, Tcl_Parse *parsePtr, Command *cmdPtr, struct CompileEnv *envPtr); |