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) --- ltests.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ltests.c') diff --git a/ltests.c b/ltests.c index bf7c19b3..2cc66bca 100644 --- a/ltests.c +++ b/ltests.c @@ -1,5 +1,5 @@ /* -** $Id: ltests.c,v 1.123 2002/06/03 20:11:41 roberto Exp roberto $ +** $Id: ltests.c,v 1.124 2002/06/11 16:23:47 roberto Exp roberto $ ** Internal Module for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -634,7 +634,7 @@ static int testC (lua_State *L) { else if EQ("rawcall") { int narg = getnum; int nres = getnum; - lua_rawcall(L, narg, nres); + lua_upcall(L, narg, nres); } else if EQ("call") { int narg = getnum; -- cgit v1.2.3-55-g6feb