From 620d22f2a09ccfe5b7a09ebc11a7b5dca28ac9e4 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 14 Sep 2000 11:09:31 -0300 Subject: new API function lua_rawget --- liolib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'liolib.c') diff --git a/liolib.c b/liolib.c index 4dc8ef80..6ba4f527 100644 --- a/liolib.c +++ b/liolib.c @@ -1,5 +1,5 @@ /* -** $Id: liolib.c,v 1.82 2000/09/12 18:41:55 roberto Exp roberto $ +** $Id: liolib.c,v 1.83 2000/09/13 20:12:14 roberto Exp roberto $ ** Standard I/O (and system) library ** See Copyright Notice in lua.h */ @@ -654,7 +654,7 @@ static int errorfb (lua_State *L) { lua_getglobal(L, LUA_ALERT); if (lua_isfunction(L, -1)) { /* avoid loop if _ALERT is not defined */ lua_pushvalue(L, -2); /* error message */ - lua_call(L, 1, 0); + lua_rawcall(L, 1, 0); } return 0; } -- cgit v1.2.3-55-g6feb