aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--emms-playlist-mode.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/emms-playlist-mode.el b/emms-playlist-mode.el
index a2aefca..f4de0dc 100644
--- a/emms-playlist-mode.el
+++ b/emms-playlist-mode.el
@@ -475,7 +475,8 @@ When NO-NEWLINE is non-nil, do not insert a newline after the track."
'face 'emms-playlist-track-face))
(when (emms-playlist-selected-track-at-p)
(emms-playlist-mode-overlay-selected))
- (unless no-newline
+ (if no-newline
+ (insert " ")
(insert "\n"))))
(defun emms-playlist-mode-update-track-function ()