diff options
Diffstat (limited to 'lua.c')
-rw-r--r-- | lua.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.c,v 1.4 1997/11/19 17:29:23 roberto Exp roberto $ | 2 | ** $Id: lua.c,v 1.5 1997/11/21 19:00:46 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 | */ |
@@ -82,7 +82,9 @@ int main (int argc, char *argv[]) | |||
82 | } | 82 | } |
83 | } | 83 | } |
84 | } | 84 | } |
85 | /* lua_close(); */ | 85 | #if DEBUG |
86 | lua_close(); | ||
87 | #endif | ||
86 | return 0; | 88 | return 0; |
87 | } | 89 | } |
88 | 90 | ||