diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-03-02 14:27:50 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-03-02 14:27:50 -0300 |
commit | 7b84f9e65c39542d16dc2b24bdfe5c07496f2042 (patch) | |
tree | a2f17d3ee9d40155bb12dbc096aa16a6414641fd /lstate.h | |
parent | 1e40b4dc615b7838305ea738bdd8e069adc0180f (diff) | |
download | lua-7b84f9e65c39542d16dc2b24bdfe5c07496f2042.tar.gz lua-7b84f9e65c39542d16dc2b24bdfe5c07496f2042.tar.bz2 lua-7b84f9e65c39542d16dc2b24bdfe5c07496f2042.zip |
lower-case for macros with arguments
Diffstat (limited to 'lstate.h')
-rw-r--r-- | lstate.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.h,v 1.52 2001/02/23 17:17:25 roberto Exp roberto $ | 2 | ** $Id: lstate.h,v 1.53 2001/02/23 20:30:01 roberto Exp roberto $ |
3 | ** Global State | 3 | ** Global State |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -16,12 +16,12 @@ | |||
16 | ** macros that control all entries and exits from Lua core machine | 16 | ** macros that control all entries and exits from Lua core machine |
17 | ** (mainly for thread syncronization) | 17 | ** (mainly for thread syncronization) |
18 | */ | 18 | */ |
19 | #ifndef LUA_LOCK | 19 | #ifndef lua_lock |
20 | #define LUA_LOCK(L) ((void) 0) | 20 | #define lua_lock(L) ((void) 0) |
21 | #endif | 21 | #endif |
22 | 22 | ||
23 | #ifndef LUA_UNLOCK | 23 | #ifndef lua_unlock |
24 | #define LUA_UNLOCK(L) ((void) 0) | 24 | #define lua_unlock(L) ((void) 0) |
25 | #endif | 25 | #endif |
26 | 26 | ||
27 | /* | 27 | /* |