aboutsummaryrefslogtreecommitdiff
path: root/lua.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-12-11 12:48:46 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-12-11 12:48:46 -0200
commit034f16892eb49361ee66f8d89aec26b071c98f57 (patch)
tree04c714baf2d60ea84a0cca270aa845faff185380 /lua.c
parentc759520bc86c9504ebec58b0de655c93c5010e5f (diff)
downloadlua-034f16892eb49361ee66f8d89aec26b071c98f57.tar.gz
lua-034f16892eb49361ee66f8d89aec26b071c98f57.tar.bz2
lua-034f16892eb49361ee66f8d89aec26b071c98f57.zip
better treatment of MARKs and DEBUG cases.
Diffstat (limited to 'lua.c')
-rw-r--r--lua.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua.c b/lua.c
index d2749ca4..8221e5bb 100644
--- a/lua.c
+++ b/lua.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.c,v 1.6 1997/12/01 20:31:25 roberto Exp roberto $ 2** $Id: lua.c,v 1.7 1997/12/03 19:57:54 roberto Exp roberto $
3** Lua stand-alone interpreter 3** Lua stand-alone interpreter
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -100,7 +100,7 @@ int main (int argc, char *argv[])
100 } 100 }
101 } 101 }
102 } 102 }
103#if DEBUG 103#ifdef DEBUG
104 lua_close(); 104 lua_close();
105#endif 105#endif
106 return 0; 106 return 0;