diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/args.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/args.lua b/core/args.lua index 6bf2b9e4..18ef743b 100644 --- a/core/args.lua +++ b/core/args.lua @@ -64,7 +64,7 @@ local function process(arg, no_emit_arg_none) end events.connect(events.INITIALIZED, function() if arg then process(arg) end end) -- Undocumented, single-instance event handler for forwarding arguments. -events.connect('cmd_line', function(arg) process(arg, true) end) +events.connect('command_line', function(arg) process(arg, true) end) if not CURSES then -- Shows all registered command line switches on the command line. |