emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 7882dc6: Revert "Use colors in the VC mode lines"


From: John Wiegley
Subject: [Emacs-diffs] master 7882dc6: Revert "Use colors in the VC mode lines"
Date: Sun, 06 Mar 2016 20:51:49 +0000

branch: master
commit 7882dc625e1ec562fcd0e1b743ef11b160cae18e
Author: John Wiegley <address@hidden>
Commit: John Wiegley <address@hidden>

    Revert "Use colors in the VC mode lines"
    
    This reverts commit 2621c293d82c15c00d9e73a8db75d70da7d0a23b.
---
 lisp/vc/vc-hooks.el |   23 ++++++++---------------
 1 files changed, 8 insertions(+), 15 deletions(-)

diff --git a/lisp/vc/vc-hooks.el b/lisp/vc/vc-hooks.el
index 6488e53..0c1718e 100644
--- a/lisp/vc/vc-hooks.el
+++ b/lisp/vc/vc-hooks.el
@@ -54,51 +54,44 @@
   :group 'vc-faces)
 
 (defface vc-needs-update-state
-  '((default :inherit vc-state-base-face)
-    (((class color)) :foreground "blue" :weight bold))
+  '((default :inherit vc-state-base-face))
   "Face for VC modeline state when the file needs update."
   :version "25.1"
   :group 'vc-faces)
 
 (defface vc-locked-state
-  '((default :inherit vc-state-base-face)
-    (((class color)) :foreground "red"))
+  '((default :inherit vc-state-base-face))
   "Face for VC modeline state when the file locked."
   :version "25.1"
   :group 'vc-faces)
 
 (defface vc-locally-added-state
-  '((default :inherit vc-state-base-face)
-    (((class color)) :foreground "ForestGreen"))
+  '((default :inherit vc-state-base-face))
   "Face for VC modeline state when the file is locally added."
   :version "25.1"
   :group 'vc-faces)
 
 (defface vc-conflict-state
-  '((default :inherit vc-state-base-face)
-    (((class color)) :foreground "red" :weight bold))
+  '((default :inherit vc-state-base-face))
   "Face for VC modeline state when the file contains merge conflicts."
   :version "25.1"
   :group 'vc-faces)
 
 (defface vc-removed-state
-  '((default :inherit vc-state-base-face)
-    (((class color)) :foreground "red"))
+  '((default :inherit vc-state-base-face))
   "Face for VC modeline state when the file was removed from the VC system."
   :version "25.1"
   :group 'vc-faces)
 
 (defface vc-missing-state
-  '((default :inherit vc-state-base-face)
-    (((class color)) :foreground "red"))
+  '((default :inherit vc-state-base-face))
   "Face for VC modeline state when the file is missing from the file system."
   :version "25.1"
   :group 'vc-faces)
 
 (defface vc-edited-state
-  '((default :inherit vc-state-base-face)
-    (((class color)) :foreground "ForestGreen"))
-  "Face for VC modeline state when the file is edited."
+  '((default :inherit vc-state-base-face))
+  "Face for VC modeline state when the file is up to date."
   :version "25.1"
   :group 'vc-faces)
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]