diff options
author | Yoni Rabkin <yoni@rabkins.net> | 2016-11-07 18:15:04 -0500 |
---|---|---|
committer | Yoni Rabkin <yoni@rabkins.net> | 2016-11-07 18:15:04 -0500 |
commit | 6736d2e86d2909ef44759b1162e006bd5cc07547 (patch) | |
tree | c93b12891e8f1f864d4b5c753971667701e9fd0d /lisp | |
parent | 591dbffe1449b5ba80885f2ce37ada4351d6417d (diff) |
* lisp/emms-stream-info.el: Remove preference and document.
Removes the built-in preference for mplayer, but also clearly documents
how one would go about choosing either mplayer or vlc to query the
streams.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/emms-stream-info.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emms-stream-info.el b/lisp/emms-stream-info.el index 667e3ce..4bf7eeb 100644 --- a/lisp/emms-stream-info.el +++ b/lisp/emms-stream-info.el @@ -44,7 +44,7 @@ ;;; Code: -(defvar emms-stream-info-backend 'mplayer +(defvar emms-stream-info-backend nil "Symbol designating the backend program to use.") ;; using unhygienic macros for good... or is it evil? @@ -82,7 +82,7 @@ (bitrate "N/A") (nowplaying "N/A")) (with-temp-buffer - (message "querying stream...") + (message "querying stream with %s backend..." emms-stream-info-backend) (cond ((eq emms-stream-info-backend 'mplayer) (emms-stream-info-mplayer-backend url) |