aboutsummaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emms-volume.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emms-volume.el b/lisp/emms-volume.el
index 1b3981e..d1e78f5 100644
--- a/lisp/emms-volume.el
+++ b/lisp/emms-volume.el
@@ -63,8 +63,8 @@
(cond
((executable-find "amixer") 'emms-volume-amixer-change)
((executable-find "pactl") 'emms-volume-pulse-change)
- ((executable-find "mixerctl") 'emms-volume-mixerctl-change)
- ((t #'(lambda (amount) (user-error "%s" "No supported mixer found. Please, define ‘emms-volume-change-function’.")))))
+ ((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."
:type '(choice (const :tag "Amixer" emms-volume-amixer-change)