From: Glenn Morris Date: Fri, 15 Dec 2017 02:01:08 +0000 (-0500) Subject: Fix some custom groups X-Git-Tag: emacs-26.0.91~148 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=541a601;p=emacs.git Fix some custom groups * lisp/vc/vc-hooks.el (vc-faces): Rename from vc-state-faces. * lisp/vc/cvs-status.el (cvs-status): Unused, remove. --- diff --git a/lisp/eshell/em-tramp.el b/lisp/eshell/em-tramp.el index e322cea1e21..e2da3468aba 100644 --- a/lisp/eshell/em-tramp.el +++ b/lisp/eshell/em-tramp.el @@ -32,6 +32,8 @@ (require 'eshell) (require 'tramp)) +;; There are no items in this custom group, but eshell modules (ab)use +;; custom groups. ;;;###autoload (progn (defgroup eshell-tramp nil diff --git a/lisp/eshell/em-xtra.el b/lisp/eshell/em-xtra.el index 7b80f64d629..89814467d1f 100644 --- a/lisp/eshell/em-xtra.el +++ b/lisp/eshell/em-xtra.el @@ -29,6 +29,8 @@ (require 'pcomplete)) (require 'compile) +;; There are no items in this custom group, but eshell modules (ab)use +;; custom groups. ;;;###autoload (progn (defgroup eshell-xtra nil diff --git a/lisp/vc/cvs-status.el b/lisp/vc/cvs-status.el index 770791a3c09..3124a61422b 100644 --- a/lisp/vc/cvs-status.el +++ b/lisp/vc/cvs-status.el @@ -33,11 +33,6 @@ ;;; -(defgroup cvs-status nil - "Major mode for browsing `cvs status' output." - :group 'pcl-cvs - :prefix "cvs-status-") - (easy-mmode-defmap cvs-status-mode-map '(("n" . next-line) ("p" . previous-line) diff --git a/lisp/vc/vc-hooks.el b/lisp/vc/vc-hooks.el index 99c8211ad5f..394b86c024b 100644 --- a/lisp/vc/vc-hooks.el +++ b/lisp/vc/vc-hooks.el @@ -34,9 +34,9 @@ ;; Faces -(defgroup vc-state-faces nil +(defgroup vc-faces nil "Faces used in the mode line by the VC state indicator." - :group 'vc-faces + :group 'vc :group 'mode-line :version "25.1")