aboutsummaryrefslogtreecommitdiff
path: root/emms.el
diff options
context:
space:
mode:
authorTassilo Horn <tassilo@member.fsf.org>2007-12-28 19:10:00 +0000
committerTassilo Horn <tassilo@member.fsf.org>2007-12-28 19:10:00 +0000
commiteab6e8de15b92970e5667c1709b4a1cab1a02e5c (patch)
tree5f429512d33d8adc164c2c66ff72750926b81394 /emms.el
parent92370b0ac336b1716614e1daea48f059c372092a (diff)
delete-duplicate-def-of-emms-track-simple-description.dpatch
Mathias patch added a new definition without removing the old one. darcs-hash:20071228191005-c06f4-b406d86dd1c9f1ba33285d8501d2cbe09727f5ca.gz
Diffstat (limited to 'emms.el')
-rw-r--r--emms.el9
1 files changed, 0 insertions, 9 deletions
diff --git a/emms.el b/emms.el
index 48242a3..4825cbd 100644
--- a/emms.el
+++ b/emms.el
@@ -591,15 +591,6 @@ a description into a playlist buffer."
(defun emms-track-simple-description (track)
"Simple function to give a user-readable description of a track.
-If it's a file track, just return the file name.
-Otherwise, return the type and the name with a colon in between."
- (if (eq 'file (emms-track-type track))
- (emms-track-name track)
- (concat (symbol-name (emms-track-type track))
- ": " (emms-track-name track))))
-
-(defun emms-track-simple-description (track)
- "Simple function to give a user-readable description of a track.
If it's a file track, just return the file name. Otherwise,
return the type and the name with a colon in between. Hex-encoded
characters in URLs are replaced by the decoded character."