From b691d4344bb67a1a09203466812877595b3bd744 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 28 Aug 2000 17:22:21 -0300 Subject: L is not unused. --- ldebug.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ldebug.c b/ldebug.c index 56bf6ddb..293138eb 100644 --- a/ldebug.c +++ b/ldebug.c @@ -1,5 +1,5 @@ /* -** $Id: ldebug.c,v 1.36 2000/08/15 18:28:48 roberto Exp roberto $ +** $Id: ldebug.c,v 1.37 2000/08/28 17:57:04 roberto Exp roberto $ ** Debug Interface ** See Copyright Notice in lua.h */ @@ -160,7 +160,6 @@ const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int localnum) { const char *name; StkId f = ar->_func; Proto *fp = getluaproto(f); - UNUSED(L); if (!fp) return NULL; /* `f' is not a Lua function? */ name = luaF_getlocalname(fp, localnum, lua_currentpc(f)); if (!name || name[0] == '*') return NULL; /* `*' starts private locals */ -- cgit v1.2.3-55-g6feb