; Cleanup defcustoms in 'lua-mode'

* lisp/progmodes/lua-mode.el (lua-always-show)
(lua-documentation-url): Add :version, remove :group.  (Bug#80840)
This commit is contained in:
john muhl 2026-04-16 09:57:55 -05:00 committed by Eli Zaretskii
parent 612960d4b3
commit c6ec2c6ce1

View file

@ -185,7 +185,7 @@ Should be a list of strings."
(defcustom lua-always-show t (defcustom lua-always-show t
"Non-nil means display `lua-process-buffer' after sending a command." "Non-nil means display `lua-process-buffer' after sending a command."
:type 'boolean :type 'boolean
:group 'lua) :version "31.1")
(defcustom lua-documentation-function 'browse-url (defcustom lua-documentation-function 'browse-url
"Function used to fetch the Lua reference manual." "Function used to fetch the Lua reference manual."
@ -202,7 +202,7 @@ Should be a list of strings."
"http://www.lua.org/manual/5.1/manual.html") "http://www.lua.org/manual/5.1/manual.html")
"URL pointing to the Lua reference manual." "URL pointing to the Lua reference manual."
:type 'string :type 'string
:group 'lua) :version "31.1")
(defvar lua-process nil (defvar lua-process nil
"The active Lua process.") "The active Lua process.")