aboutsummaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorYoni Rabkin <yoni@rabkins.net>2019-09-05 17:07:30 -0400
committerYoni Rabkin <yoni@rabkins.net>2019-09-05 17:07:30 -0400
commit6dfc9ffbfc91d333f1e2d4ada821e243eb868726 (patch)
tree002160e754547acf926a6fb2acbca126713884a5 /lisp
parentf209b44c76f4a8532783909384ae7492b8d9b6e7 (diff)
* lisp/emms-volume.el: small bug fix
Thank you to Jordan Wilson for catching this.
Diffstat (limited to 'lisp')
-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..d1e78f5 100644
--- a/lisp/emms-volume.el
+++ b/lisp/emms-volume.el
@@ -64,7 +64,7 @@
((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’.")))))
+ (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)