From 556a89e53751135f45d8dd1e84651461b67e1f81 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 30 Mar 2000 14:19:48 -0300 Subject: new names for debug types --- liolib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'liolib.c') diff --git a/liolib.c b/liolib.c index 81142793..68358f6a 100644 --- a/liolib.c +++ b/liolib.c @@ -1,5 +1,5 @@ /* -** $Id: liolib.c,v 1.59 2000/03/20 19:13:45 roberto Exp roberto $ +** $Id: liolib.c,v 1.60 2000/03/22 16:24:13 roberto Exp roberto $ ** Standard I/O (and system) library ** See Copyright Notice in lua.h */ @@ -536,7 +536,7 @@ static void io_debug (lua_State *L) { static void errorfb (lua_State *L) { char buff[MAXMESSAGE]; int level = 1; /* skip level 0 (it's this function) */ - lua_Dbgactreg ar; + lua_Debug ar; lua_Object alertfunc = lua_rawgetglobal(L, "_ALERT"); sprintf(buff, "error: %.200s\n", lua_getstring(L, lua_getparam(L, 1))); while (lua_getstack(L, level++, &ar)) { -- cgit v1.2.3-55-g6feb