From 843dfee3364438d0f8dbbe8486136bcf1dc9949f Mon Sep 17 00:00:00 2001 From: forcer Date: Sat, 1 Apr 2006 20:51:00 +0000 Subject: Use insert-file instead of insert-file-literally to get around coding system problems darcs-hash:20060401205125-2189f-ebdde0312212cab3bae813796b9d79ae9ce1001b.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 233b7a0..e2527ac 100644 --- a/emms-source-playlist.el +++ b/emms-source-playlist.el @@ -58,7 +58,7 @@ See `emms-source-playlist-formats' for supported formats." t))) (mapc #'emms-playlist-insert-track (with-temp-buffer - (insert-file-literally file) + (insert-file file) (goto-char (point-min)) (catch 'return (let ((formats emms-source-playlist-formats)) @@ -114,7 +114,7 @@ OUT should be a buffer to get the native EMMS format." t))) (mapc #'emms-playlist-insert-track (with-temp-buffer - (insert-file-literally file) + (insert-file file) (goto-char (point-min)) (when (not (emms-source-playlist-native-p)) (error "Not a native EMMS playlist file.")) -- cgit v1.2.3