aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2017-12-14 21:01:08 -0500
committerGlenn Morris2017-12-14 21:01:08 -0500
commit541a60108d8777119430953245ee530665e603ff (patch)
tree5b047cbed81a3718c0fb00e07bd6c713f62d694b
parente220d6e112e33f3f897c305d0d5d278d83191774 (diff)
downloademacs-541a60108d8777119430953245ee530665e603ff.tar.gz
emacs-541a60108d8777119430953245ee530665e603ff.zip
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.
-rw-r--r--lisp/eshell/em-tramp.el2
-rw-r--r--lisp/eshell/em-xtra.el2
-rw-r--r--lisp/vc/cvs-status.el5
-rw-r--r--lisp/vc/vc-hooks.el4
4 files changed, 6 insertions, 7 deletions
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 @@
32 (require 'eshell) 32 (require 'eshell)
33 (require 'tramp)) 33 (require 'tramp))
34 34
35;; There are no items in this custom group, but eshell modules (ab)use
36;; custom groups.
35;;;###autoload 37;;;###autoload
36(progn 38(progn
37 (defgroup eshell-tramp nil 39 (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 @@
29 (require 'pcomplete)) 29 (require 'pcomplete))
30(require 'compile) 30(require 'compile)
31 31
32;; There are no items in this custom group, but eshell modules (ab)use
33;; custom groups.
32;;;###autoload 34;;;###autoload
33(progn 35(progn
34(defgroup eshell-xtra nil 36(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 @@
33 33
34;;; 34;;;
35 35
36(defgroup cvs-status nil
37 "Major mode for browsing `cvs status' output."
38 :group 'pcl-cvs
39 :prefix "cvs-status-")
40
41(easy-mmode-defmap cvs-status-mode-map 36(easy-mmode-defmap cvs-status-mode-map
42 '(("n" . next-line) 37 '(("n" . next-line)
43 ("p" . previous-line) 38 ("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 @@
34 34
35;; Faces 35;; Faces
36 36
37(defgroup vc-state-faces nil 37(defgroup vc-faces nil
38 "Faces used in the mode line by the VC state indicator." 38 "Faces used in the mode line by the VC state indicator."
39 :group 'vc-faces 39 :group 'vc
40 :group 'mode-line 40 :group 'mode-line
41 :version "25.1") 41 :version "25.1")
42 42