diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2008-07-03 11:24:36 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2008-07-03 11:24:36 -0300 |
commit | 2a84c29bc33259cfc59e00956c953d235d3d8843 (patch) | |
tree | c871e1f3d236a974a6d349d44bbff7eb3b032009 | |
parent | 4d8a1103d3a066b9e97b22b33837d002845c222f (diff) | |
download | lua-2a84c29bc33259cfc59e00956c953d235d3d8843.tar.gz lua-2a84c29bc33259cfc59e00956c953d235d3d8843.tar.bz2 lua-2a84c29bc33259cfc59e00956c953d235d3d8843.zip |
comment about exported function not used by Lua
-rw-r--r-- | ldo.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldo.h,v 2.7 2005/08/24 16:15:49 roberto Exp roberto $ | 2 | ** $Id: ldo.h,v 2.8 2006/07/11 15:53:29 roberto Exp roberto $ |
3 | ** Stack and Call structure of Lua | 3 | ** Stack and Call structure of Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -51,6 +51,7 @@ LUAI_FUNC void luaD_growstack (lua_State *L, int n); | |||
51 | LUAI_FUNC void luaD_throw (lua_State *L, int errcode); | 51 | LUAI_FUNC void luaD_throw (lua_State *L, int errcode); |
52 | LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud); | 52 | LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud); |
53 | 53 | ||
54 | /* exported for Coco */ | ||
54 | LUAI_FUNC void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop); | 55 | LUAI_FUNC void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop); |
55 | 56 | ||
56 | #endif | 57 | #endif |