From fe8773677753040345afa2c2d708fe5ea8068c8e Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Thu, 16 May 2013 20:34:34 +0200 Subject: Get rid of module() in all internal modules. --- src/jit/v.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/jit/v.lua') diff --git a/src/jit/v.lua b/src/jit/v.lua index 88c358b55..22bee3ffa 100644 --- a/src/jit/v.lua +++ b/src/jit/v.lua @@ -159,9 +159,9 @@ local function dumpon(outfile) end -- Public module functions. -module(...) - -on = dumpon -off = dumpoff -start = dumpon -- For -j command line option. +return { + on = dumpon, + off = dumpoff, + start = dumpon -- For -j command line option. +} -- cgit v1.2.3-55-g6feb