From 7cb108237e5ebe3fd996e9587d7d68b3349c90ef Mon Sep 17 00:00:00 2001 From: Michael Olson Date: Tue, 16 May 2006 08:12:00 +0000 Subject: emms-source-playlist: Do not expand names of files in playlists, as this can cause problems with emms-player-mpd in some configurations. darcs-hash:20060516081257-1bfb2-477dde9d9a2b2430897ee4fe0428a645b3beaa06.gz --- emms-source-playlist.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emms-source-playlist.el b/emms-source-playlist.el index 1a381b1..5d5bd8d 100644 --- a/emms-source-playlist.el +++ b/emms-source-playlist.el @@ -245,7 +245,7 @@ OUT should be the buffer where tracks are stored in the native EMMS format." (mapcar (lambda (file) (if (string-match "\\`http://" file) (emms-track 'url file) - (emms-track 'file (expand-file-name file)))) + (emms-track 'file file))) (emms-source-playlist-m3u-files))) (defun emms-source-playlist-m3u-files () @@ -312,7 +312,7 @@ OUT should be the buffer where tracks are stored in m3u format." (mapcar (lambda (file) (if (string-match "\\`http://" file) (emms-track 'url file) - (emms-track 'file (expand-file-name file)))) + (emms-track 'file file))) (emms-source-playlist-pls-files))) (defun emms-source-playlist-pls-files () -- cgit v1.2.3