aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--emms-metaplaylist-mode.el12
-rw-r--r--emms-playlist-mode.el12
2 files changed, 12 insertions, 12 deletions
diff --git a/emms-metaplaylist-mode.el b/emms-metaplaylist-mode.el
index f80c9bb..e2a2ab9 100644
--- a/emms-metaplaylist-mode.el
+++ b/emms-metaplaylist-mode.el
@@ -53,19 +53,19 @@
(defface emms-metaplaylist-mode-face
'((((class color) (background dark))
- :foreground "AntiqueWhite3")
+ (:foreground "AntiqueWhite3"))
(((type tty) (class mono))
- :inverse-video t)
- (t :background "WhiteSmoke"))
+ (:inverse-video t))
+ (t (:background "WhiteSmoke")))
"Face for the buffer names in the playlists buffer."
:group 'emms-metaplaylist-mode)
(defface emms-metaplaylist-mode-current-face
'((((class color) (background dark))
- :foreground "red2")
+ (:foreground "red2"))
(((type tty) (class mono))
- :inverse-video t)
- (t :background "red3"))
+ (:inverse-video t))
+ (t (:background "red3")))
"Face for the current buffer name in the playlists buffer."
:group 'emms-metaplaylist-mode)
diff --git a/emms-playlist-mode.el b/emms-playlist-mode.el
index 936205e..f7e6464 100644
--- a/emms-playlist-mode.el
+++ b/emms-playlist-mode.el
@@ -68,19 +68,19 @@
(defface emms-playlist-track-face
'((((class color) (background dark))
- :foreground "DarkSeaGreen")
+ (:foreground "DarkSeaGreen"))
(((type tty) (class mono))
- :inverse-video t)
- (t :background "Blue"))
+ (:inverse-video t))
+ (t (:background "Blue")))
"Face for the tracks in a playlist buffer."
:group 'emms-playlist-mode)
(defface emms-playlist-selected-face
'((((class color) (background dark))
- :foreground "SteelBlue3")
+ (:foreground "SteelBlue3"))
(((type tty) (class mono))
- :inverse-video t)
- (t :background "blue3"))
+ (:inverse-video t))
+ (t (:background "blue3")))
"Face for highlighting the selected track."
:group 'emms-playlist-mode)