diff options
author | Tassilo Horn <tassilo@member.fsf.org> | 2007-12-28 19:10:00 +0000 |
---|---|---|
committer | Tassilo Horn <tassilo@member.fsf.org> | 2007-12-28 19:10:00 +0000 |
commit | eab6e8de15b92970e5667c1709b4a1cab1a02e5c (patch) | |
tree | 5f429512d33d8adc164c2c66ff72750926b81394 | |
parent | 92370b0ac336b1716614e1daea48f059c372092a (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
-rw-r--r-- | emms.el | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -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." |