aboutsummaryrefslogtreecommitdiff
path: root/src/jit/v.lua
diff options
context:
space:
mode:
authorMike Pall <mike>2013-05-16 20:34:34 +0200
committerMike Pall <mike>2013-05-16 20:34:34 +0200
commitfe8773677753040345afa2c2d708fe5ea8068c8e (patch)
treed4078f02a49227468543c800b450014ca46c0913 /src/jit/v.lua
parent647cc4613f3acd5ec8785920102af22b85cf2b9c (diff)
downloadluajit-fe8773677753040345afa2c2d708fe5ea8068c8e.tar.gz
luajit-fe8773677753040345afa2c2d708fe5ea8068c8e.tar.bz2
luajit-fe8773677753040345afa2c2d708fe5ea8068c8e.zip
Get rid of module() in all internal modules.
Diffstat (limited to 'src/jit/v.lua')
-rw-r--r--src/jit/v.lua10
1 files changed, 5 insertions, 5 deletions
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)
159end 159end
160 160
161-- Public module functions. 161-- Public module functions.
162module(...) 162return {
163 163 on = dumpon,
164on = dumpon 164 off = dumpoff,
165off = dumpoff 165 start = dumpon -- For -j command line option.
166start = dumpon -- For -j command line option. 166}
167 167