diff options
author | Bruno Félix Rezende Ribeiro <oitofelix@gnu.org> | 2020-07-16 15:10:33 -0300 |
---|---|---|
committer | Bruno Félix Rezende Ribeiro <oitofelix@gnu.org> | 2020-07-16 15:15:25 -0300 |
commit | 36d760e2bd7e5376aff3f03456fa6445833242ad (patch) | |
tree | 3587029eb20de7db442abf14e96807fea43eedd2 | |
parent | 699895f68a202ae0d497ed1155039db64768adc3 (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.el | 2 |
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." |