Variable: lua-process-buffer-name

lua-process-buffer-name is a customizable variable defined in lua-mode.el.gz.

Value

nil

Documentation

Name of the inferior Lua buffer.

The value nil means use the same name as lua-default-application.

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-buffer-name nil
  "Name of the inferior Lua buffer.
The value nil means use the same name as `lua-default-application'."
  :type '(choice (const :tag "Default" nil) string)
  :safe 'string-or-null-p
  :version "31.1")