diff options
author | yonirabkin <yonirabkin> | 2005-09-22 16:58:00 +0000 |
---|---|---|
committer | yonirabkin <mwolson@gnu.org> | 2005-09-22 16:58:00 +0000 |
commit | d1075eefa063bd98d165b6ed551d9fc96998be2d (patch) | |
tree | 45303dda34ec4d4e771dd75d3dba0a4f320b283e | |
parent | 297b183bfafd53b72539fe57aaf88cb32acdb4d5 (diff) |
remove emms-metaplaylist-mode code from emms-playlist-mode
darcs-hash:20050922165801-be80e-ca5535f624ce98446b706f6dc3d183e18b1b1b2c.gz
-rw-r--r-- | emms-playlist-mode.el | 20 |
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 ;;; -------------------------------------------------------- |