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/tclInt.h | |
parent | 39cc2a0e16b0e756662ae39eb7e7381535dc5b54 (diff) | |
download | tcl-fa22561193e48c63681c637db297f6808b80ce1a.zip tcl-fa22561193e48c63681c637db297f6808b80ce1a.tar.gz tcl-fa22561193e48c63681c637db297f6808b80ce1a.tar.bz2 |
factoring TclSpliceTailcall out of TclPopStackFrame
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index d02df6b..efde2ce 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -15,7 +15,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInt.h,v 1.448 2009/11/18 23:46:05 nijtmans Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.449 2009/12/06 20:35:39 msofer Exp $ */ #ifndef _TCLINT @@ -2663,6 +2663,8 @@ MODULE_SCOPE Tcl_ObjCmdProc TclNRYieldObjCmd; MODULE_SCOPE void TclClearTailcall(Tcl_Interp *interp, struct TEOV_callback *tailcallPtr); +MODULE_SCOPE void TclSpliceTailcall(Tcl_Interp *interp, + struct TEOV_callback *tailcallPtr); /* * This structure holds the data for the various iteration callbacks used to |