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 --- lstate.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index 757d46c3..21348211 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 1.52 2001/02/23 17:17:25 roberto Exp roberto $ +** $Id: lstate.h,v 1.53 2001/02/23 20:30:01 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -16,12 +16,12 @@ ** macros that control all entries and exits from Lua core machine ** (mainly for thread syncronization) */ -#ifndef LUA_LOCK -#define LUA_LOCK(L) ((void) 0) +#ifndef lua_lock +#define lua_lock(L) ((void) 0) #endif -#ifndef LUA_UNLOCK -#define LUA_UNLOCK(L) ((void) 0) +#ifndef lua_unlock +#define lua_unlock(L) ((void) 0) #endif /* -- cgit v1.2.3-55-g6feb