aboutsummaryrefslogtreecommitdiff
path: root/ltests.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-03-02 14:27:50 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-03-02 14:27:50 -0300
commit7b84f9e65c39542d16dc2b24bdfe5c07496f2042 (patch)
treea2f17d3ee9d40155bb12dbc096aa16a6414641fd /ltests.c
parent1e40b4dc615b7838305ea738bdd8e069adc0180f (diff)
downloadlua-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltests.c b/ltests.c
index 5cc9f99a..bf609156 100644
--- a/ltests.c
+++ b/ltests.c
@@ -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) {
432static int closestate (lua_State *L) { 432static 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