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 | fc46fcafdd0ec5b9db76a309b4473132f0b79c74 (patch) | |
tree | 0c8ee86e4a1dfdbe9ad52a7e66349e03ea8ad569 /generic/tclInt.h | |
parent | 3b464cf961480a33629b8759b7d2c3ae699392fe (diff) | |
download | tcl-fc46fcafdd0ec5b9db76a309b4473132f0b79c74.zip tcl-fc46fcafdd0ec5b9db76a309b4473132f0b79c74.tar.gz tcl-fc46fcafdd0ec5b9db76a309b4473132f0b79c74.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); |