lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 2a84c29bc33259cfc59e00956c953d235d3d8843
parent 4d8a1103d3a066b9e97b22b33837d002845c222f
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Thu,  3 Jul 2008 11:24:13 -0300

comment about exported function not used by Lua

Diffstat:
Mldo.h | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ldo.h b/ldo.h @@ -1,5 +1,5 @@ /* -** $Id: ldo.h,v 2.7 2005/08/24 16:15:49 roberto Exp roberto $ +** $Id: ldo.h,v 2.8 2006/07/11 15:53:29 roberto Exp roberto $ ** Stack and Call structure of Lua ** See Copyright Notice in lua.h */ @@ -51,6 +51,7 @@ LUAI_FUNC void luaD_growstack (lua_State *L, int n); LUAI_FUNC void luaD_throw (lua_State *L, int errcode); LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud); +/* exported for Coco */ LUAI_FUNC void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop); #endif