From 95020afb6385f3c1293118c4950e9fb6299cef5a Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 16 Nov 2009 13:51:19 -0200 Subject: 'module' returns the new module (to be used with lexical environments) --- loadlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/loadlib.c b/loadlib.c index 3e807c2c..65182591 100644 --- a/loadlib.c +++ b/loadlib.c @@ -1,5 +1,5 @@ /* -** $Id: loadlib.c,v 1.65 2009/09/07 14:24:12 roberto Exp roberto $ +** $Id: loadlib.c,v 1.66 2009/10/05 16:44:33 roberto Exp roberto $ ** Dynamic library loader for Lua ** See Copyright Notice in lua.h ** @@ -587,7 +587,7 @@ static int ll_module (lua_State *L) { lua_pushvalue(L, -1); setfenv(L); dooptions(L, loaded - 1); - return 0; + return 1; } -- cgit v1.2.3-55-g6feb