aboutsummaryrefslogtreecommitdiff
path: root/emms-metaplaylist-mode.el
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 /emms-metaplaylist-mode.el
parentdf33a9de0b079846589ade4322fff4ae3bda16ce (diff)
Fix face definitions syntax (emms-playlist-mode, emms-metaplaylist-mode)
darcs-hash:20060420201021-2189f-697d166a50c7e62f09abbbaf4ce0dd17ab9084ff.gz
Diffstat (limited to 'emms-metaplaylist-mode.el')
-rw-r--r--emms-metaplaylist-mode.el12
1 files changed, 6 insertions, 6 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)