Variable: lua-process-history-file
lua-process-history-file is a customizable variable defined in
lua-mode.el.gz.
Value
nil
Documentation
File used to save command history of the inferior Lua process.
The value nil means that no command history is saved.
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-process-history-file nil
"File used to save command history of the inferior Lua process.
The value nil means that no command history is saved."
:type '(choice (const :tag "None" nil) file)
:safe 'string-or-null-p
:version "31.1")