diff options
author | William Xu <william.xwl@gmail.com> | 2010-07-17 17:46:34 +0800 |
---|---|---|
committer | William Xu <william.xwl@gmail.com> | 2010-07-17 17:47:02 +0800 |
commit | 8c1b4530b698cb8d439589c1b534246b112444ae (patch) | |
tree | 26c0eb3b5258fed70e1e2ae77dfe70c174448674 /lisp | |
parent | 1f0070a006311265f096e6d2ba5386c5a1ebcca4 (diff) |
(emms-info-track-description): Fix usage of `cond'.
Diffstat (limited to 'lisp')
-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 |