diff options
-rw-r--r-- | emms-playlist-mode.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emms-playlist-mode.el b/emms-playlist-mode.el index 16a640f..5c81071 100644 --- a/emms-playlist-mode.el +++ b/emms-playlist-mode.el @@ -255,7 +255,8 @@ of the saved playlist inside." (setq s (read (buffer-string)))) (kill-buffer buffer) (with-current-buffer (emms-playlist-new name) - (insert s) + (let ((inhibit-read-only t)) + (insert s)) (emms-playlist-first) (emms-playlist-select (point))))) |