branch: externals/vc-got
commit 6eea6cfb1e3422589b7c48e032e3c3bdd34a2c49
Author: Omar Polo <[email protected]>
Commit: Omar Polo <[email protected]>
drop unnecessary `:group's directive in defcustom
---
vc-got.el | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/vc-got.el b/vc-got.el
index 23070ec..ebd4268 100755
--- a/vc-got.el
+++ b/vc-got.el
@@ -146,8 +146,7 @@
(defcustom vc-got-program "got"
"Name of the Got executable (excluding any arguments)."
- :type 'string
- :group 'vc-got)
+ :type 'string)
(defcustom vc-got-diff-switches t
"String or list of strings specifying switches for Got diff under VC.
@@ -155,8 +154,7 @@ If nil, use the value of `vc-diff-switches'. If t, use no
switches."
:type '(choice (const :tag "Unspecified" nil)
(const :tag "None" t)
(string :tag "Argument String")
- (repeat :tag "Argument List" :value ("") string))
- :group 'vc-got)
+ (repeat :tag "Argument List" :value ("") string)))
;; helpers
(defun vc-got--program-version ()