diff options
Diffstat (limited to '')
-rw-r--r-- | src/jit/v.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/jit/v.lua b/src/jit/v.lua index 88c358b5..22bee3ff 100644 --- a/src/jit/v.lua +++ b/src/jit/v.lua | |||
@@ -159,9 +159,9 @@ local function dumpon(outfile) | |||
159 | end | 159 | end |
160 | 160 | ||
161 | -- Public module functions. | 161 | -- Public module functions. |
162 | module(...) | 162 | return { |
163 | 163 | on = dumpon, | |
164 | on = dumpon | 164 | off = dumpoff, |
165 | off = dumpoff | 165 | start = dumpon -- For -j command line option. |
166 | start = dumpon -- For -j command line option. | 166 | } |
167 | 167 | ||