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) --- lauxlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lauxlib.c') diff --git a/lauxlib.c b/lauxlib.c index f905361f..51561746 100644 --- a/lauxlib.c +++ b/lauxlib.c @@ -1,5 +1,5 @@ /* -** $Id: lauxlib.c,v 1.72 2002/06/03 20:11:41 roberto Exp roberto $ +** $Id: lauxlib.c,v 1.73 2002/06/05 16:59:37 roberto Exp roberto $ ** Auxiliary functions for building Lua libraries ** See Copyright Notice in lua.h */ @@ -150,7 +150,7 @@ LUALIB_API int luaL_callmeta (lua_State *L, int obj, const char *event) { return 0; } lua_pushvalue(L, obj); - lua_rawcall(L, 1, 1); + lua_upcall(L, 1, 1); return 1; } -- cgit v1.2.3-55-g6feb