summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
authordonal.k.fellows@manchester.ac.uk <dkf>2012-10-16 13:14:28 (GMT)
committerdonal.k.fellows@manchester.ac.uk <dkf>2012-10-16 13:14:28 (GMT)
commit52fd0ba94b36e5f21e5eac6e8f64bd20b216579d (patch)
treeb39ac82a9bce6a5b82d8c2ec8cae14c64e4ffc86 /generic/tclBasic.c
parent051fd4dbbcc59d9d9b67db63242de31972e840c4 (diff)
parentd10be09885428921977a9f411c862973c037df5b (diff)
downloadtcl-52fd0ba94b36e5f21e5eac6e8f64bd20b216579d.zip
tcl-52fd0ba94b36e5f21e5eac6e8f64bd20b216579d.tar.gz
tcl-52fd0ba94b36e5f21e5eac6e8f64bd20b216579d.tar.bz2
Implementation of TIP #405.
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r--generic/tclBasic.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index db365e3..7c08f2f 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -230,6 +230,7 @@ static const CmdInfo builtInCmds[] = {
{"linsert", Tcl_LinsertObjCmd, NULL, NULL, 1},
{"list", Tcl_ListObjCmd, TclCompileListCmd, NULL, 1},
{"llength", Tcl_LlengthObjCmd, TclCompileLlengthCmd, NULL, 1},
+ {"lmap", Tcl_LmapObjCmd, TclCompileLmapCmd, TclNRLmapCmd, 1},
{"lrange", Tcl_LrangeObjCmd, TclCompileLrangeCmd, NULL, 1},
{"lrepeat", Tcl_LrepeatObjCmd, NULL, NULL, 1},
{"lreplace", Tcl_LreplaceObjCmd, TclCompileLreplaceCmd, NULL, 1},
@@ -8852,7 +8853,7 @@ NRCoroInjectObjCmd(
return TCL_OK;
}
-
+
int
TclNRInterpCoroutine(
ClientData clientData,