[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/hyperdrive c3881b6fdd 1/4: Change: (hyperdrive-history) Us
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/hyperdrive c3881b6fdd 1/4: Change: (hyperdrive-history) Use built-in faces for Exists? column |
Date: |
Fri, 13 Oct 2023 16:00:56 -0400 (EDT) |
branch: elpa/hyperdrive
commit c3881b6fdd27ab17190ffd95413ebc783268f044
Author: Joseph Turner <joseph@ushin.org>
Commit: Joseph Turner <joseph@ushin.org>
Change: (hyperdrive-history) Use built-in faces for Exists? column
---
hyperdrive-vars.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/hyperdrive-vars.el b/hyperdrive-vars.el
index e97f339dac..3d316fead6 100644
--- a/hyperdrive-vars.el
+++ b/hyperdrive-vars.el
@@ -213,13 +213,13 @@ an existing buffer at the same version, or make a new
buffer."
(defface hyperdrive-history-range '((t (:inherit font-lock-escape-face)))
"Version range in `hyperdrive-history' buffers.")
-(defface hyperdrive-history-existent '((t (:foreground "black" :background
"green")))
+(defface hyperdrive-history-existent '((t :inherit success))
"Marker for known existent entries in `hyperdrive-history'buffers.")
-(defface hyperdrive-history-nonexistent '((t (:foreground "black" :background
"red")))
+(defface hyperdrive-history-nonexistent '((t :inherit error))
"Marker for known nonexistent entries in `hyperdrive-history'buffers.")
-(defface hyperdrive-history-unknown '((t (:foreground "black" :background
"yellow")))
+(defface hyperdrive-history-unknown '((t :inherit warning))
"Marker for entries with unknown existence in `hyperdrive-history' buffers.")
(defface hyperdrive-mirror-new '((t (:foreground "black" :background "green")))