summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
authordonal.k.fellows@manchester.ac.uk <dkf>2014-01-21 15:07:59 (GMT)
committerdonal.k.fellows@manchester.ac.uk <dkf>2014-01-21 15:07:59 (GMT)
commit98f66e1519ca57ce81a7511621840d7fa505c5fa (patch)
treeedde2684acb69fbdefc4ae76635e5cb9ab149de5 /generic/tclBasic.c
parentefd559dac122ae50477edea12f10cedb7d2902dd (diff)
downloadtcl-98f66e1519ca57ce81a7511621840d7fa505c5fa.zip
tcl-98f66e1519ca57ce81a7511621840d7fa505c5fa.tar.gz
tcl-98f66e1519ca57ce81a7511621840d7fa505c5fa.tar.bz2
implementation of [yieldto] in bytecode
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r--generic/tclBasic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index 7c02706..e355229 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -259,7 +259,7 @@ static const CmdInfo builtInCmds[] = {
{"variable", Tcl_VariableObjCmd, TclCompileVariableCmd, NULL, CMD_IS_SAFE},
{"while", Tcl_WhileObjCmd, TclCompileWhileCmd, TclNRWhileObjCmd, CMD_IS_SAFE},
{"yield", NULL, TclCompileYieldCmd, TclNRYieldObjCmd, CMD_IS_SAFE},
- {"yieldto", NULL, NULL, TclNRYieldToObjCmd, CMD_IS_SAFE},
+ {"yieldto", NULL, TclCompileYieldToCmd, TclNRYieldToObjCmd, CMD_IS_SAFE},
/*
* Commands in the OS-interface. Note that many of these are unsafe.