emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master f412892b79d 2/2: ; Remove unneeded group in lua-ts-mode defcustom


From: Eli Zaretskii
Subject: master f412892b79d 2/2: ; Remove unneeded group in lua-ts-mode defcustoms
Date: Sat, 23 Mar 2024 03:24:51 -0400 (EDT)

branch: master
commit f412892b79dae531ace081f61ec6f3874f9270bc
Author: john muhl <jm@pub.pink>
Commit: Eli Zaretskii <eliz@gnu.org>

    ; Remove unneeded group in lua-ts-mode defcustoms
    
    * lisp/progmodes/lua-ts-mode.el (lua-ts-mode-hook):
    (lua-ts-indent-offset):
    (lua-ts-luacheck-program):
    (lua-ts-inferior-buffer):
    (lua-ts-inferior-program):
    (lua-ts-inferior-options):
    (lua-ts-inferior-startfile):
    (lua-ts-inferior-prompt):
    (lua-ts-inferior-prompt-continue):
    (lua-ts-inferior-history):
    (lua-ts-indent-continuation-lines): Remove :group.  (bug#69910)
---
 lisp/progmodes/lua-ts-mode.el | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/lisp/progmodes/lua-ts-mode.el b/lisp/progmodes/lua-ts-mode.el
index b6d6e90680c..407ef230c32 100644
--- a/lisp/progmodes/lua-ts-mode.el
+++ b/lisp/progmodes/lua-ts-mode.el
@@ -60,66 +60,56 @@
   :options '(flymake-mode
              hs-minor-mode
              outline-minor-mode)
-  :group 'lua-ts
   :version "30.1")
 
 (defcustom lua-ts-indent-offset 4
   "Number of spaces for each indentation step in `lua-ts-mode'."
   :type 'natnum
   :safe 'natnump
-  :group 'lua-ts
   :version "30.1")
 
 (defcustom lua-ts-luacheck-program "luacheck"
   "Location of the Luacheck program."
   :type '(choice (const :tag "None" nil) string)
-  :group 'lua-ts
   :version "30.1")
 
 (defcustom lua-ts-inferior-buffer "*Lua*"
   "Name of the inferior Lua buffer."
   :type 'string
   :safe 'stringp
-  :group 'lua-ts
   :version "30.1")
 
 (defcustom lua-ts-inferior-program "lua"
   "Program to run in the inferior Lua process."
   :type '(choice (const :tag "None" nil) string)
-  :group 'lua-ts
   :version "30.1")
 
 (defcustom lua-ts-inferior-options '("-i")
   "Command line options for the inferior Lua process."
   :type '(repeat string)
-  :group 'lua-ts
   :version "30.1")
 
 (defcustom lua-ts-inferior-startfile nil
   "File to load into the inferior Lua process at startup."
   :type '(choice (const :tag "None" nil) (file :must-match t))
-  :group 'lua-ts
   :version "30.1")
 
 (defcustom lua-ts-inferior-prompt ">"
   "Prompt used by the inferior Lua process."
   :type 'string
   :safe 'stringp
-  :group 'lua-ts
   :version "30.1")
 
 (defcustom lua-ts-inferior-prompt-continue ">>"
   "Continuation prompt used by the inferior Lua process."
   :type 'string
   :safe 'stringp
-  :group 'lua-ts
   :version "30.1")
 
 (defcustom lua-ts-inferior-history nil
   "File used to save command history of the inferior Lua process."
   :type '(choice (const :tag "None" nil) file)
   :safe 'string-or-null-p
-  :group 'lua-ts
   :version "30.1")
 
 (defcustom lua-ts-indent-continuation-lines t
@@ -141,7 +131,6 @@ the statement:
   end"
   :type 'boolean
   :safe 'booleanp
-  :group 'lua-ts
   :version "30.1")
 
 (defvar lua-ts--builtins



reply via email to

[Prev in Thread] Current Thread [Next in Thread]