From 3393fd7f257397199c6ecd143f956a19ee4a0cf7 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 1 Dec 1997 18:31:25 -0200 Subject: first version of "lua_close" --- lua.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lua.c') diff --git a/lua.c b/lua.c index 2484d3bc..2ebfc951 100644 --- a/lua.c +++ b/lua.c @@ -1,5 +1,5 @@ /* -** $Id: lua.c,v 1.4 1997/11/19 17:29:23 roberto Exp roberto $ +** $Id: lua.c,v 1.5 1997/11/21 19:00:46 roberto Exp roberto $ ** Lua stand-alone interpreter ** See Copyright Notice in lua.h */ @@ -82,7 +82,9 @@ int main (int argc, char *argv[]) } } } -/* lua_close(); */ +#if DEBUG + lua_close(); +#endif return 0; } -- cgit v1.2.3-55-g6feb