aboutsummaryrefslogtreecommitdiff
path: root/ltests.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-10-30 14:29:59 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-10-30 14:29:59 -0200
commit37e9c2e74486ed443151430a9b73a3844d3554ef (patch)
tree2d225332e7bf2e9a83c233416b8aa9043dbe9e8b /ltests.c
parente42a219eebd2e4c6f11f8b175d3d0e0f6678b48c (diff)
downloadlua-37e9c2e74486ed443151430a9b73a3844d3554ef.tar.gz
lua-37e9c2e74486ed443151430a9b73a3844d3554ef.tar.bz2
lua-37e9c2e74486ed443151430a9b73a3844d3554ef.zip
macro DEBUG renamed to LUA_DEBUG
Diffstat (limited to 'ltests.c')
-rw-r--r--ltests.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ltests.c b/ltests.c
index 111c9f64..b45a1de2 100644
--- a/ltests.c
+++ b/ltests.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.c,v 1.51 2000/10/20 16:39:03 roberto Exp roberto $ 2** $Id: ltests.c,v 1.52 2000/10/26 12:47:05 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*/
@@ -32,9 +32,9 @@ void luaB_opentests (lua_State *L);
32 32
33 33
34/* 34/*
35** The whole module only makes sense with DEBUG on 35** The whole module only makes sense with LUA_DEBUG on
36*/ 36*/
37#ifdef DEBUG 37#ifdef LUA_DEBUG
38 38
39 39
40 40