diff options
| author | Dmitry Gutov <dgutov@yandex.ru> | 2015-05-16 17:06:10 +0300 |
|---|---|---|
| committer | Dmitry Gutov <dgutov@yandex.ru> | 2015-05-16 17:12:36 +0300 |
| commit | 30151ee56ba6f88d4ba8d36fb5c28c2940630965 (patch) | |
| tree | 60fdad7f3ee1f5ed501ea24bf4d8b3fd89801565 /lisp/vc/vc-git.el | |
| parent | daaa4a38e85c7af131568eaf0c487f0a51fd5f5b (diff) | |
| download | emacs-30151ee56ba6f88d4ba8d36fb5c28c2940630965.tar.gz | |
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.
Diffstat (limited to 'lisp/vc/vc-git.el')
| -rw-r--r-- | lisp/vc/vc-git.el | 13 |
1 files 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 |
