diff options
author | Michael Olson <mwolson@gnu.org> | 2006-06-09 04:20:00 +0000 |
---|---|---|
committer | Michael Olson <mwolson@gnu.org> | 2006-06-09 04:20:00 +0000 |
commit | 4bc8afdebbf0a8481688f7d4d58b758a74390b12 (patch) | |
tree | 22fa39a03f9b20ff02033e61dd4427a991d23d54 | |
parent | 2d20eeafa0471f5a8dae57285d75716291b3b71b (diff) |
emms-setup: Get rid of pointless compiler warning.
darcs-hash:20060609042002-1bfb2-16505ccb1e785f16743bda984768c03d07eb7a74.gz
-rw-r--r-- | emms-setup.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emms-setup.el b/emms-setup.el index dc55b36..693d40b 100644 --- a/emms-setup.el +++ b/emms-setup.el @@ -84,7 +84,8 @@ audio files, and a metadata cache." (add-to-list 'emms-info-functions 'emms-info-mp3info) (add-to-list 'emms-info-functions 'emms-info-ogginfo) (setq emms-track-description-function 'emms-info-track-description) - (emms-cache 1)) + (when (fboundp 'emms-cache) ; work around compiler warning + (emms-cache 1))) ;;;###autoload (defun emms-all () |