From 7b84f9e65c39542d16dc2b24bdfe5c07496f2042 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 2 Mar 2001 14:27:50 -0300 Subject: lower-case for macros with arguments --- ltests.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ltests.c') diff --git a/ltests.c b/ltests.c index 5cc9f99a..bf609156 100644 --- a/ltests.c +++ b/ltests.c @@ -1,5 +1,5 @@ /* -** $Id: ltests.c,v 1.71 2001/02/22 18:59:59 roberto Exp roberto $ +** $Id: ltests.c,v 1.72 2001/02/23 17:17:25 roberto Exp roberto $ ** Internal Module for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -432,7 +432,7 @@ static int loadlib (lua_State *L) { static int closestate (lua_State *L) { lua_State *L1 = (lua_State *)(unsigned long)luaL_check_number(L, 1); lua_close(L1); - LUA_UNLOCK(L); /* close cannot unlock that */ + lua_unlock(L); /* close cannot unlock that */ return 0; } -- cgit v1.2.3-55-g6feb