diff options
author | Michael Olson <mwolson@gnu.org> | 2006-05-16 08:12:00 +0000 |
---|---|---|
committer | Michael Olson <mwolson@gnu.org> | 2006-05-16 08:12:00 +0000 |
commit | 7cb108237e5ebe3fd996e9587d7d68b3349c90ef (patch) | |
tree | 706515dd376b9de786661058b1f2ece4b14b051b | |
parent | 179c6991624b8b119ee4a35059bac849a1b40f88 (diff) |
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
-rw-r--r-- | emms-source-playlist.el | 4 |
1 files 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 () |