aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorforcer <forcer>2006-04-20 20:10:00 +0000
committerforcer <mwolson@gnu.org>2006-04-20 20:10:00 +0000
commit56ad988565352e3084774b2d40150e13cbbe3c0a (patch)
treecfe48619795051f5e233e0c4e4df44c7fb6fabb4
parentdf33a9de0b079846589ade4322fff4ae3bda16ce (diff)
Fix face definitions syntax (emms-playlist-mode, emms-metaplaylist-mode)
darcs-hash:20060420201021-2189f-697d166a50c7e62f09abbbaf4ce0dd17ab9084ff.gz
-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)