aboutsummaryrefslogtreecommitdiff
path: root/emms-playlist-mode.el
diff options
context:
space:
mode:
authoryonirabkin <yonirabkin>2005-09-22 16:58:00 +0000
committeryonirabkin <mwolson@gnu.org>2005-09-22 16:58:00 +0000
commitd1075eefa063bd98d165b6ed551d9fc96998be2d (patch)
tree45303dda34ec4d4e771dd75d3dba0a4f320b283e /emms-playlist-mode.el
parent297b183bfafd53b72539fe57aaf88cb32acdb4d5 (diff)
remove emms-metaplaylist-mode code from emms-playlist-mode
darcs-hash:20050922165801-be80e-ca5535f624ce98446b706f6dc3d183e18b1b1b2c.gz
Diffstat (limited to 'emms-playlist-mode.el')
-rw-r--r--emms-playlist-mode.el20
1 files changed, 3 insertions, 17 deletions
diff --git a/emms-playlist-mode.el b/emms-playlist-mode.el
index b60d389..21aa337 100644
--- a/emms-playlist-mode.el
+++ b/emms-playlist-mode.el
@@ -49,7 +49,7 @@
(((type tty) (class mono))
:inverse-video t)
(t :background "Blue"))
- "Basic face for highlighting tracks in a playlist buffer."
+ "Face for the tracks in a playlist buffer."
:group 'emms-playlist-mode)
(defface emms-playlist-selected-face
@@ -58,7 +58,7 @@
(((type tty) (class mono))
:inverse-video t)
(t :background "blue3"))
- "Basic face for highlighting the selected track."
+ "Face for highlighting the selected track."
:group 'emms-playlist-mode)
;;; --------------------------------------------------------
@@ -216,21 +216,7 @@ FACE should be a... face."
'emms-playlist-selected-face
3))
nil)
-
-;;; --------------------------------------------------------
-;;; Playlists
-;;; --------------------------------------------------------
-
-(defun emms-playlist-buffers ()
- "Return a list of EMMS playlist buffers."
- (let ((lis nil))
- (mapc (lambda (buf)
- (with-current-buffer buf
- (when emms-playlist-buffer-p
- (setq lis (cons buf lis)))))
- (buffer-list))
- lis))
-
+
;;; --------------------------------------------------------
;;; Saving/Restoring
;;; --------------------------------------------------------