From 7c1cc2f456fd64860c3d6e653e9fb7e852dc88d2 Mon Sep 17 00:00:00 2001 From: Jessie Hildebrandt Date: Fri, 10 May 2019 19:47:50 -0400 Subject: [PATCH] Improve face name consistency --- mood-line.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mood-line.el b/mood-line.el index 6e37fe0..1618876 100644 --- a/mood-line.el +++ b/mood-line.el @@ -77,7 +77,7 @@ "Face used for generic status indicators in the mode-line." :group 'mood-line) -(defface mood-line-status-good +(defface mood-line-status-success '((t (:inherit (success)))) "Face used for success status indicators in the mode-line." :group 'mood-line) @@ -183,7 +183,7 @@ 'face (if .error 'mood-line-status-error 'mood-line-status-warning)))) - (propertize "✔ Good " 'face 'mood-line-status-good))) + (propertize "✔ Good " 'face 'mood-line-status-success))) ('running (propertize "● Checking " 'face 'mood-line-status-info)) ('no-checker "") ('errored (propertize "✖ Error " 'face 'mood-line-status-error))