From c6ec2c6ce1eb743d42a582dd8bfde68e98df4339 Mon Sep 17 00:00:00 2001 From: john muhl Date: Thu, 16 Apr 2026 09:57:55 -0500 Subject: [PATCH] ; Cleanup defcustoms in 'lua-mode' * lisp/progmodes/lua-mode.el (lua-always-show) (lua-documentation-url): Add :version, remove :group. (Bug#80840) --- lisp/progmodes/lua-mode.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/progmodes/lua-mode.el b/lisp/progmodes/lua-mode.el index bc042599759..ec13bec54b2 100644 --- a/lisp/progmodes/lua-mode.el +++ b/lisp/progmodes/lua-mode.el @@ -185,7 +185,7 @@ Should be a list of strings." (defcustom lua-always-show t "Non-nil means display `lua-process-buffer' after sending a command." :type 'boolean - :group 'lua) + :version "31.1") (defcustom lua-documentation-function 'browse-url "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") "URL pointing to the Lua reference manual." :type 'string - :group 'lua) + :version "31.1") (defvar lua-process nil "The active Lua process.")