diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-12-11 12:48:46 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-12-11 12:48:46 -0200 |
commit | 034f16892eb49361ee66f8d89aec26b071c98f57 (patch) | |
tree | 04c714baf2d60ea84a0cca270aa845faff185380 /lua.c | |
parent | c759520bc86c9504ebec58b0de655c93c5010e5f (diff) | |
download | lua-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |