From 78c507b7b83a85c106b619ce2050725a80627a25 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 25 Jun 2002 16:18:49 -0300 Subject: `lua_upcall' -> `lua_call' --- lua.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lua.h') diff --git a/lua.h b/lua.h index a14d00d7..3c650278 100644 --- a/lua.h +++ b/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.141 2002/06/18 15:19:27 roberto Exp roberto $ +** $Id: lua.h,v 1.142 2002/06/20 20:41:46 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_upcall' */ +/* option for multiple returns in `lua_pcall' and `lua_call' */ #define LUA_MULTRET (-1) @@ -185,7 +185,7 @@ LUA_API int lua_setglobals (lua_State *L, int level); /* ** `load' and `call' functions (load and run Lua code) */ -LUA_API void lua_upcall (lua_State *L, int nargs, int nresults); +LUA_API void lua_call (lua_State *L, int nargs, int nresults); LUA_API int lua_pcall (lua_State *L, int nargs, int nresults); LUA_API int lua_load (lua_State *L, lua_Chunkreader reader, void *data, const char *chunkname); -- cgit v1.2.3-55-g6feb