rawcall' -> upcall' (unprotected call)

This commit is contained in:
Roberto Ierusalimschy
2002-06-13 10:44:50 -03:00
parent 864c96f36c
commit eb3de8768a
8 changed files with 20 additions and 20 deletions

4
lapi.c
View File

@@ -1,5 +1,5 @@
/*
** $Id: lapi.c,v 1.197 2002/06/12 14:51:31 roberto Exp roberto $
** $Id: lapi.c,v 1.198 2002/06/13 13:39:55 roberto Exp roberto $
** Lua API
** See Copyright Notice in lua.h
*/
@@ -555,7 +555,7 @@ LUA_API void lua_setmetatable (lua_State *L, int objindex) {
** `load' and `call' functions (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) {
StkId func;
lua_lock(L);
api_checknelems(L, nargs+1);