aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Félix Rezende Ribeiro <oitofelix@gnu.org>2019-09-02 23:12:19 -0300
committerBruno Félix Rezende Ribeiro <oitofelix@gnu.org>2019-09-02 23:12:19 -0300
commitb136d63c252aa9e9a09fcee561fe86c4aab92f20 (patch)
tree1cbe665e28e45780a9a5f5596ae71d1059d1b57e
parentaa3357403153100484561cb7235fffc3faccfb00 (diff)
* lisp/emms-volume.el: Fix missing quote in emms-volume-change-function
-rw-r--r--lisp/emms-volume.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emms-volume.el b/lisp/emms-volume.el
index 99c8c28..1b3981e 100644
--- a/lisp/emms-volume.el
+++ b/lisp/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."