diff options
author | Mike Pall <mike> | 2013-05-16 20:34:34 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2013-05-16 20:34:34 +0200 |
commit | fe8773677753040345afa2c2d708fe5ea8068c8e (patch) | |
tree | d4078f02a49227468543c800b450014ca46c0913 /src/jit/dump.lua | |
parent | 647cc4613f3acd5ec8785920102af22b85cf2b9c (diff) | |
download | luajit-fe8773677753040345afa2c2d708fe5ea8068c8e.tar.gz luajit-fe8773677753040345afa2c2d708fe5ea8068c8e.tar.bz2 luajit-fe8773677753040345afa2c2d708fe5ea8068c8e.zip |
Get rid of module() in all internal modules.
Diffstat (limited to 'src/jit/dump.lua')
-rw-r--r-- | src/jit/dump.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/jit/dump.lua b/src/jit/dump.lua index e6c9d5b6..18a4d260 100644 --- a/src/jit/dump.lua +++ b/src/jit/dump.lua | |||
@@ -694,9 +694,9 @@ local function dumpon(opt, outfile) | |||
694 | end | 694 | end |
695 | 695 | ||
696 | -- Public module functions. | 696 | -- Public module functions. |
697 | module(...) | 697 | return { |
698 | 698 | on = dumpon, | |
699 | on = dumpon | 699 | off = dumpoff, |
700 | off = dumpoff | 700 | start = dumpon -- For -j command line option. |
701 | start = dumpon -- For -j command line option. | 701 | } |
702 | 702 | ||