Variable: lua-default-application
lua-default-application is a customizable variable defined in
lua-mode.el.gz.
Value
"lua"
Documentation
Default application to run in Lua process.
Can be a string, where it denotes a command to be executed to start Lua process, or a (HOST . PORT) cons, that can be used to connect to Lua process running remotely.
This variable was added, or its default value changed, in Emacs 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/lua-mode.el.gz
(defcustom lua-default-application "lua"
"Default application to run in Lua process.
Can be a string, where it denotes a command to be executed to start Lua
process, or a (HOST . PORT) cons, that can be used to connect to Lua
process running remotely."
:type '(choice (string)
(cons string integer))
:version "31.1")