diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2009-12-06 20:35:38 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2009-12-06 20:35:38 (GMT) |
commit | fa22561193e48c63681c637db297f6808b80ce1a (patch) | |
tree | 06eda450bdbd56c35fa55ffddcc9e0ac45ee3b54 /generic/tclExecute.c | |
parent | 39cc2a0e16b0e756662ae39eb7e7381535dc5b54 (diff) | |
download | tcl-fa22561193e48c63681c637db297f6808b80ce1a.zip tcl-fa22561193e48c63681c637db297f6808b80ce1a.tar.gz tcl-fa22561193e48c63681c637db297f6808b80ce1a.tar.bz2 |
factoring TclSpliceTailcall out of TclPopStackFrame
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r-- | generic/tclExecute.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index 6ad9043..9758676 100644 --- a/generic/tclExecute.c +++ b/generic/tclExecute.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclExecute.c,v 1.449 2009/12/06 18:12:26 msofer Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.450 2009/12/06 20:35:39 msofer Exp $ */ #include "tclInt.h" @@ -1991,6 +1991,7 @@ TclExecuteByteCode( codePtr = param; if (!codePtr) { + /* NOT CALLED, does not (yet?) work */ goto resumeCoroutine; } break; |