diff options
| author | dkf <donal.k.fellows@manchester.ac.uk> | 2014-01-21 15:07:59 (GMT) |
|---|---|---|
| committer | dkf <donal.k.fellows@manchester.ac.uk> | 2014-01-21 15:07:59 (GMT) |
| commit | 128e4211ae5e41a3a0cbe8f651ee211618dd9a38 (patch) | |
| tree | edde2684acb69fbdefc4ae76635e5cb9ab149de5 /generic/tclBasic.c | |
| parent | 88b2f7f06e994621c0a8e374cdf70b85abd3a173 (diff) | |
| download | tcl-128e4211ae5e41a3a0cbe8f651ee211618dd9a38.zip tcl-128e4211ae5e41a3a0cbe8f651ee211618dd9a38.tar.gz tcl-128e4211ae5e41a3a0cbe8f651ee211618dd9a38.tar.bz2 | |
implementation of [yieldto] in bytecode
Diffstat (limited to 'generic/tclBasic.c')
| -rw-r--r-- | generic/tclBasic.c | 2 |
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. |
