From 30151ee56ba6f88d4ba8d36fb5c28c2940630965 Mon Sep 17 00:00:00 2001 From: Dmitry Gutov Date: Sat, 16 May 2015 17:06:10 +0300 Subject: [PATCH] Remove redundant :group declarations from vc-git.el * lisp/vc/vc-git.el (vc-git-diff-switches) (vc-git-annotate-switches, vc-git-resolve-conflicts) (vc-git-program, vc-git-root-log-format): Remove the redundant :group declarations. --- lisp/vc/vc-git.el | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el index 9dae1909595..b08baba4e90 100644 --- a/lisp/vc/vc-git.el +++ b/lisp/vc/vc-git.el @@ -117,8 +117,7 @@ If nil, use the value of `vc-diff-switches'. If t, use no switches." (const :tag "None" t) (string :tag "Argument String") (repeat :tag "Argument List" :value ("") string)) - :version "23.1" - :group 'vc-git) + :version "23.1") (defcustom vc-git-annotate-switches nil "String or list of strings specifying switches for Git blame under VC. @@ -127,8 +126,7 @@ If nil, use the value of `vc-annotate-switches'. If t, use no switches." (const :tag "None" t) (string :tag "Argument String") (repeat :tag "Argument List" :value ("") string)) - :version "25.1" - :group 'vc-git) + :version "25.1") (defcustom vc-git-resolve-conflicts t "When non-nil, mark conflicted file as resolved upon saving. @@ -140,14 +138,12 @@ the staging area." (const :tag "Resolve" t) (const :tag "Resolve and maybe unstage all files" unstage-maybe)) - :version "25.1" - :group 'vc-git) + :version "25.1") (defcustom vc-git-program "git" "Name of the Git executable (excluding any arguments)." :version "24.1" - :type 'string - :group 'vc-git) + :type 'string) (defcustom vc-git-root-log-format '("%d%h..: %an %ad %s" @@ -167,7 +163,6 @@ format string (which is passed to \"git log\" via the argument matching the resulting Git log output, and KEYWORDS is a list of `font-lock-keywords' for highlighting the Log View buffer." :type '(list string string (repeat sexp)) - :group 'vc-git :version "24.1") (defvar vc-git-commits-coding-system 'utf-8 -- 2.11.4.GIT