aboutsummaryrefslogtreecommitdiff
path: root/emms-playlist-mode.el
diff options
context:
space:
mode:
authorMichael Olson <mwolson@gnu.org>2006-06-04 19:49:00 +0000
committerMichael Olson <mwolson@gnu.org>2006-06-04 19:49:00 +0000
commit692400a23be7cc13834140638d8d69188917c8f7 (patch)
tree6c3ae546790bfa4f783181bb6a10b2ea31989695 /emms-playlist-mode.el
parent12d4527033257c37e633a1990dc84e2a1ca7f6fb (diff)
Make sure we never have an empty track description when inserting a song into a playlist buffer.
darcs-hash:20060604194940-1bfb2-8e8a20dde4b8c3fc89f5dd0552207cb5f3441429.gz
Diffstat (limited to 'emms-playlist-mode.el')
-rw-r--r--emms-playlist-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/emms-playlist-mode.el b/emms-playlist-mode.el
index 4f6ac2a..307ede0 100644
--- a/emms-playlist-mode.el
+++ b/emms-playlist-mode.el
@@ -453,7 +453,7 @@ This preserves the current EMMS buffer."
When NO-NEWLINE is non-nil, do not insert a newline after the track."
(emms-playlist-ensure-playlist-buffer)
(emms-with-inhibit-read-only-t
- (insert (emms-propertize (emms-track-description track)
+ (insert (emms-propertize (emms-track-force-description track)
'emms-track track))
(save-restriction
(widen)