lua_upcall' -> lua_call'

This commit is contained in:
Roberto Ierusalimschy
2002-06-25 16:18:49 -03:00
parent 69906cb56f
commit 78c507b7b8
5 changed files with 13 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: ltests.c,v 1.126 2002/06/18 15:19:27 roberto Exp roberto $
** $Id: ltests.c,v 1.127 2002/06/20 20:40:38 roberto Exp roberto $
** Internal Module for Debugging of the Lua Implementation
** See Copyright Notice in lua.h
*/
@@ -665,7 +665,7 @@ static int testC (lua_State *L) {
else if EQ("rawcall") {
int narg = getnum;
int nres = getnum;
lua_upcall(L, narg, nres);
lua_call(L, narg, nres);
}
else if EQ("call") {
int narg = getnum;