diff options
author | forcer <forcer> | 2006-04-01 20:51:00 +0000 |
---|---|---|
committer | forcer <mwolson@gnu.org> | 2006-04-01 20:51:00 +0000 |
commit | 843dfee3364438d0f8dbbe8486136bcf1dc9949f (patch) | |
tree | 695479258289a9c7d5b100fa8100e93e18866582 | |
parent | 215607ef80022605cad09106bb7748aa089435ce (diff) |
Use insert-file instead of insert-file-literally to get around coding system problems
darcs-hash:20060401205125-2189f-ebdde0312212cab3bae813796b9d79ae9ce1001b.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 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.")) |