diff options
author | twylite <twylite@crypt.co.za> | 2012-08-08 15:34:13 (GMT) |
---|---|---|
committer | twylite <twylite@crypt.co.za> | 2012-08-08 15:34:13 (GMT) |
commit | dadccca81c83f99bae348c4caecf3a90270e7e6a (patch) | |
tree | 6fda988586dcaee0b69cbec1daac7aa742d6d97d /generic/tclCompCmds.c | |
parent | 540f62b18de23e912d85b8b0fe9ea4f35dda0d2b (diff) | |
download | tcl-dadccca81c83f99bae348c4caecf3a90270e7e6a.zip tcl-dadccca81c83f99bae348c4caecf3a90270e7e6a.tar.gz tcl-dadccca81c83f99bae348c4caecf3a90270e7e6a.tar.bz2 |
Rename 'mapeach' to 'lmap' per preferred alternative in TIP #405.
Diffstat (limited to 'generic/tclCompCmds.c')
-rw-r--r-- | generic/tclCompCmds.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclCompCmds.c b/generic/tclCompCmds.c index 395a0f8..4d015ec 100644 --- a/generic/tclCompCmds.c +++ b/generic/tclCompCmds.c @@ -1943,7 +1943,7 @@ TclCompileForeachCmd( * * TclCompileEachloopCmd -- * - * Procedure called to compile the "foreach" and "mapeach" commands. + * Procedure called to compile the "foreach" and "lmap" commands. * * Results: * Returns TCL_OK for a successful compile. Returns TCL_ERROR to defer @@ -3832,23 +3832,23 @@ TclCompileLsetCmd( /* *---------------------------------------------------------------------- * - * TclCompileMapeachCmd -- + * TclCompileLmapCmd -- * - * Procedure called to compile the "mapeach" command. + * Procedure called to compile the "lmap" command. * * Results: * Returns TCL_OK for a successful compile. Returns TCL_ERROR to defer * evaluation to runtime. * * Side effects: - * Instructions are added to envPtr to execute the "mapeach" command at + * Instructions are added to envPtr to execute the "lmap" command at * runtime. * *---------------------------------------------------------------------- */ int -TclCompileMapeachCmd( +TclCompileLmapCmd( Tcl_Interp *interp, /* Used for error reporting. */ Tcl_Parse *parsePtr, /* Points to a parse structure for the command * created by Tcl_ParseCommand. */ |