emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[nongnu] elpa/helm ff4bb0c67e 1/5: Remove unneeded :group in helm-tags d


From: ELPA Syncer
Subject: [nongnu] elpa/helm ff4bb0c67e 1/5: Remove unneeded :group in helm-tags defcustoms
Date: Sat, 9 Jul 2022 12:58:40 -0400 (EDT)

branch: elpa/helm
commit ff4bb0c67e5498ba9e3db816669f85289487ea88
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>

    Remove unneeded :group in helm-tags defcustoms
---
 helm-tags.el | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/helm-tags.el b/helm-tags.el
index f977aae54d..6b29f8331a 100644
--- a/helm-tags.el
+++ b/helm-tags.el
@@ -33,14 +33,12 @@
 
 (defcustom helm-etags-tag-file-name "TAGS"
   "Etags tag file name."
-  :type  'string
-  :group 'helm-tags)
+  :type  'string)
 
 (defcustom helm-etags-tag-file-search-limit 10
   "The limit level of directory to search tag file.
 Don't search tag file deeply if outside this value."
-  :type  'number
-  :group 'helm-tags)
+  :type  'number)
 
 (defcustom helm-etags-match-part-only 'tag
   "Allow choosing the tag part of CANDIDATE in `helm-source-etags-select'.
@@ -50,14 +48,12 @@ You can choose matching against the tag part (i.e \"(defun 
foo\"),
 or against the whole candidate (i.e \"(filename:5:(defun foo\")."
   :type '(choice
           (const :tag "Match only tag" tag)
-          (const :tag "Match all file+tag" all))
-  :group 'helm-tags)
+          (const :tag "Match all file+tag" all)))
 
 (defcustom helm-etags-execute-action-at-once-if-one t
   "Whether to jump straight to the selected tag if there's only
 one match."
-  :type 'boolean
-  :group 'helm-tags)
+  :type 'boolean)
 
 
 (defgroup helm-tags-faces nil



reply via email to

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