From eb3de8768a6b614597f7e5f018fc31a9f52441df Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 13 Jun 2002 10:44:50 -0300 Subject: `rawcall' -> `upcall' (unprotected call) --- lua.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lua.h') diff --git a/lua.h b/lua.h index 891a16c3..5c1de5f6 100644 --- a/lua.h +++ b/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.138 2002/06/06 12:40:22 roberto Exp roberto $ +** $Id: lua.h,v 1.139 2002/06/13 13:39:55 roberto Exp roberto $ ** Lua - An Extensible Extension Language ** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil ** http://www.lua.org mailto:info@lua.org @@ -25,7 +25,7 @@ -/* option for multiple returns in `lua_pcall' and `lua_rawcall' */ +/* option for multiple returns in `lua_pcall' and `lua_upcall' */ #define LUA_MULTRET (-1) @@ -179,7 +179,7 @@ LUA_API void lua_setmetatable (lua_State *L, int objindex); /* ** `load' and `call' functions (load and run Lua code) */ -LUA_API void lua_rawcall (lua_State *L, int nargs, int nresults); +LUA_API void lua_upcall (lua_State *L, int nargs, int nresults); LUA_API int lua_pcall (lua_State *L, int nargs, int nresults, int errf); LUA_API int lua_load (lua_State *L, lua_Chunkreader reader, void *data, const char *chunkname); -- cgit v1.2.3-55-g6feb