* bug#69910: [PATCH] Remove unnecessary group in lua-ts-mode defcustoms
@ 2024-03-20 2:03 john muhl
2024-03-20 2:06 ` john muhl
0 siblings, 1 reply; 4+ messages in thread
From: john muhl @ 2024-03-20 2:03 UTC (permalink / raw)
To: 69910
Tags: patch
Another one that got lost. This one drops all the extra ‘:group’s
from the defcustoms.
^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#69910: [PATCH] Remove unnecessary group in lua-ts-mode defcustoms
2024-03-20 2:03 bug#69910: [PATCH] Remove unnecessary group in lua-ts-mode defcustoms john muhl
@ 2024-03-20 2:06 ` john muhl
2024-03-20 2:19 ` john muhl
0 siblings, 1 reply; 4+ messages in thread
From: john muhl @ 2024-03-20 2:06 UTC (permalink / raw)
To: 69910
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0001-Remove-unnecessary-group-in-lua-ts-mode-defcustoms.patch --]
[-- Type: text/x-patch, Size: 2859 bytes --]
From cfa04e3cbe11f3470a840b55bb2d8b894901d424 Mon Sep 17 00:00:00 2001
From: john muhl <jm@pub.pink>
Date: Tue, 12 Mar 2024 11:17:15 -0500
Subject: [PATCH] Remove unnecessary 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 @@ lua-ts-mode-hook
: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 @@ lua-ts-indent-continuation-lines
end"
:type 'boolean
:safe 'booleanp
- :group 'lua-ts
:version "30.1")
(defvar lua-ts--builtins
--
2.41.0
[-- Attachment #2: Type: text/plain, Size: 156 bytes --]
john muhl <jm@pub.pink> writes:
> Tags: patch
>
> Another one that got lost. This one drops all the extra ‘:group’s
> from the defcustoms.
^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#69910: [PATCH] Remove unnecessary group in lua-ts-mode defcustoms
2024-03-20 2:06 ` john muhl
@ 2024-03-20 2:19 ` john muhl
2024-03-23 7:25 ` Eli Zaretskii
0 siblings, 1 reply; 4+ messages in thread
From: john muhl @ 2024-03-20 2:19 UTC (permalink / raw)
To: 69910
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0001-Remove-unneeded-group-in-lua-ts-mode-defcustoms.patch --]
[-- Type: text/x-patch, Size: 2858 bytes --]
From 8b491b0d9c71a034d28594a0a92a32d18bd999e5 Mon Sep 17 00:00:00 2001
From: john muhl <jm@pub.pink>
Date: Tue, 12 Mar 2024 11:17:15 -0500
Subject: [PATCH] ; 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 @@ lua-ts-mode-hook
: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 @@ lua-ts-indent-continuation-lines
end"
:type 'boolean
:safe 'booleanp
- :group 'lua-ts
:version "30.1")
(defvar lua-ts--builtins
--
2.41.0
[-- Attachment #2: Type: text/plain, Size: 294 bytes --]
john muhl <jm@pub.pink> writes:
> [1. text/x-patch; 0001-Remove-unnecessary-group-in-lua-ts-mode-defcustoms.patch]...
>
>
>
> john muhl <jm@pub.pink> writes:
>
>> Tags: patch
>>
>> Another one that got lost. This one drops all the extra ‘:group’s
>> from the defcustoms.
^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#69910: [PATCH] Remove unnecessary group in lua-ts-mode defcustoms
2024-03-20 2:19 ` john muhl
@ 2024-03-23 7:25 ` Eli Zaretskii
0 siblings, 0 replies; 4+ messages in thread
From: Eli Zaretskii @ 2024-03-23 7:25 UTC (permalink / raw)
To: john muhl; +Cc: 69910-done
> From: john muhl <jm@pub.pink>
> Date: Tue, 19 Mar 2024 21:19:16 -0500
>
> > john muhl <jm@pub.pink> writes:
> >
> >> Tags: patch
> >>
> >> Another one that got lost. This one drops all the extra ‘:group’s
> >> from the defcustoms.
Thanks, installed on master, and closing the bug.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-03-23 7:25 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-20 2:03 bug#69910: [PATCH] Remove unnecessary group in lua-ts-mode defcustoms john muhl
2024-03-20 2:06 ` john muhl
2024-03-20 2:19 ` john muhl
2024-03-23 7:25 ` Eli Zaretskii
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.