From 36d760e2bd7e5376aff3f03456fa6445833242ad Mon Sep 17 00:00:00 2001 From: Bruno Félix Rezende Ribeiro Date: Thu, 16 Jul 2020 15:10:33 -0300 Subject: * emms-volume.el: Fix missing quote in emms-volume-change-function MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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’. --- emms-volume.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." -- cgit v1.2.3