diff options
-rw-r--r-- | lisp/emms-info.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emms-info.el b/lisp/emms-info.el index 2d089ac..2f3b7bc 100644 --- a/lisp/emms-info.el +++ b/lisp/emms-info.el @@ -1,6 +1,6 @@ ;;; emms-info.el --- Retrieving track information -;; Copyright (C) 2005, 2006, 2007, 2008, 2009 Free Software Foundation Inc. +;; Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation Inc. ;; Author: Jorgen Schaefer <forcer@forcix.cx> @@ -132,7 +132,8 @@ Return nil otherwise." (concat artist " - " title)) (title title) - (emms-track-simple-description track)))) + (t + (emms-track-simple-description track))))) (provide 'emms-info) ;;; emms-info.el ends here |