Improve face name consistency

This commit is contained in:
Jessie Hildebrandt 2019-05-10 19:47:50 -04:00
parent f23ae8e0d0
commit 7c1cc2f456

View File

@ -77,7 +77,7 @@
"Face used for generic status indicators in the mode-line." "Face used for generic status indicators in the mode-line."
:group 'mood-line) :group 'mood-line)
(defface mood-line-status-good (defface mood-line-status-success
'((t (:inherit (success)))) '((t (:inherit (success))))
"Face used for success status indicators in the mode-line." "Face used for success status indicators in the mode-line."
:group 'mood-line) :group 'mood-line)
@ -183,7 +183,7 @@
'face (if .error 'face (if .error
'mood-line-status-error 'mood-line-status-error
'mood-line-status-warning)))) '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)) ('running (propertize "● Checking " 'face 'mood-line-status-info))
('no-checker "") ('no-checker "")
('errored (propertize "✖ Error " 'face 'mood-line-status-error)) ('errored (propertize "✖ Error " 'face 'mood-line-status-error))