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 /ltests.c | |
parent | 1e40b4dc615b7838305ea738bdd8e069adc0180f (diff) | |
download | lua-7b84f9e65c39542d16dc2b24bdfe5c07496f2042.tar.gz lua-7b84f9e65c39542d16dc2b24bdfe5c07496f2042.tar.bz2 lua-7b84f9e65c39542d16dc2b24bdfe5c07496f2042.zip |
lower-case for macros with arguments
Diffstat (limited to 'ltests.c')
-rw-r--r-- | ltests.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltests.c,v 1.71 2001/02/22 18:59:59 roberto Exp roberto $ | 2 | ** $Id: ltests.c,v 1.72 2001/02/23 17:17:25 roberto Exp roberto $ |
3 | ** Internal Module for Debugging of the Lua Implementation | 3 | ** Internal Module for Debugging of the Lua Implementation |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -432,7 +432,7 @@ static int loadlib (lua_State *L) { | |||
432 | static int closestate (lua_State *L) { | 432 | static int closestate (lua_State *L) { |
433 | lua_State *L1 = (lua_State *)(unsigned long)luaL_check_number(L, 1); | 433 | lua_State *L1 = (lua_State *)(unsigned long)luaL_check_number(L, 1); |
434 | lua_close(L1); | 434 | lua_close(L1); |
435 | LUA_UNLOCK(L); /* close cannot unlock that */ | 435 | lua_unlock(L); /* close cannot unlock that */ |
436 | return 0; | 436 | return 0; |
437 | } | 437 | } |
438 | 438 | ||