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 --- ltm.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'ltm.c') diff --git a/ltm.c b/ltm.c index aff4a227..df30955b 100644 --- a/ltm.c +++ b/ltm.c @@ -1,5 +1,5 @@ /* -** $Id: ltm.c,v 1.68 2001/02/22 18:59:59 roberto Exp roberto $ +** $Id: ltm.c,v 1.69 2001/02/23 17:17:25 roberto Exp roberto $ ** Tag methods ** See Copyright Notice in lua.h */ @@ -111,14 +111,14 @@ static void checktag (lua_State *L, int tag) { LUA_API int lua_copytagmethods (lua_State *L, int tagto, int tagfrom) { int e; - LUA_LOCK(L); + lua_lock(L); checktag(L, tagto); checktag(L, tagfrom); for (e=0; etop); incr_top; - LUA_UNLOCK(L); + lua_unlock(L); } LUA_API void lua_settagmethod (lua_State *L, int t, const l_char *event) { int e; - LUA_LOCK(L); + lua_lock(L); e = luaI_checkevent(L, event, t); checktag(L, t); if (!luaT_validevent(t, e)) @@ -190,6 +190,6 @@ LUA_API void lua_settagmethod (lua_State *L, int t, const l_char *event) { luaD_error(L, l_s("tag method must be a function (or nil)")); } L->top--; - LUA_UNLOCK(L); + lua_unlock(L); } -- cgit v1.2.3-55-g6feb