diff options
| -rw-r--r-- | emms-browser.el | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/emms-browser.el b/emms-browser.el index 6575e5f..ec41ec8 100644 --- a/emms-browser.el +++ b/emms-browser.el @@ -430,7 +430,7 @@ Apart from tracks, names are displayed without modification."    "Concat a track number to the name of track, if one exists."    (let ((tracknum (emms-track-get track 'info-tracknumber)))      (concat -     (if (or (not (stringp tracknum) (string= tracknum "0"))) +     (if (or (not (stringp tracknum)) (string= tracknum "0"))           ""         (concat          (if (eq (length tracknum) 1) | 
