aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Félix Rezende Ribeiro <oitofelix@gnu.org>2020-07-16 15:10:33 -0300
committerBruno Félix Rezende Ribeiro <oitofelix@gnu.org>2020-07-16 15:15:25 -0300
commit36d760e2bd7e5376aff3f03456fa6445833242ad (patch)
tree3587029eb20de7db442abf14e96807fea43eedd2
parent699895f68a202ae0d497ed1155039db64768adc3 (diff)
* emms-volume.el: Fix missing quote in emms-volume-change-function
This change was originally commited in b136d63, but somehow got lost. It’s critical because otherwise EMMS volume library won’t load on systems lacking ‘amixer’ and ‘pactl’.
-rw-r--r--emms-volume.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/emms-volume.el b/emms-volume.el
index 7a6ff5f..078eef5 100644
--- a/emms-volume.el
+++ b/emms-volume.el
@@ -63,7 +63,7 @@
(cond
((executable-find "amixer") 'emms-volume-amixer-change)
((executable-find "pactl") 'emms-volume-pulse-change)
- ((executable-find "mixerctl") emms-volume-mixerctl-change)
+ ((executable-find "mixerctl") 'emms-volume-mixerctl-change)
(t #'(lambda (amount) (user-error "%s" "No supported mixer found. Please, define ‘emms-volume-change-function’."))))
"*The function to use to change the volume.
If you have your own functions for changing volume, set this."