[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/tex-parens 6cfb39e375 1/3: Remove unnecessary :group ke
From: |
ELPA Syncer |
Subject: |
[elpa] externals/tex-parens 6cfb39e375 1/3: Remove unnecessary :group keyword from defcustoms |
Date: |
Sun, 15 Sep 2024 18:59:02 -0400 (EDT) |
branch: externals/tex-parens
commit 6cfb39e37584ca56900f0820c5c2a13891166824
Author: Paul Nelson <ultrono@gmail.com>
Commit: Paul Nelson <ultrono@gmail.com>
Remove unnecessary :group keyword from defcustoms
* tex-parens.el (tex-parens-search-limit):
(tex-parens-ignore-comments):
---
tex-parens.el | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/tex-parens.el b/tex-parens.el
index d6b2eca2d1..324d50e4fd 100644
--- a/tex-parens.el
+++ b/tex-parens.el
@@ -279,8 +279,7 @@ theorem-like environments to which you care about applying
the
list and sexp-based navigation commands. Longer environments
typically occur at the top level and are best navigated using the
defun-based commands."
- :type 'integer
- :group 'tex-parens)
+ :type 'integer)
(defun tex-parens--math-face ()
"Return the number of math face modifiers at point.
@@ -301,8 +300,7 @@ defun-based commands."
(defcustom tex-parens-ignore-comments t
"Whether to ignore comments when searching for delimiters."
- :type 'boolean
- :group 'tex-parens)
+ :type 'boolean)
(defun tex-parens--ignore (str begin end)
"Check if STR should be ignored.