emms-help
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[emms-help] [PATCH] Issue in `emms-volume-change-function'


From: Jordan Wilson
Subject: [emms-help] [PATCH] Issue in `emms-volume-change-function'
Date: Thu, 05 Sep 2019 11:38:09 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (windows-nt)

Hi all.

This fixes a trivial issue introduced recently in the `cond' in
`emms-volume-change-function'.

--- emms-volume.el      2019-09-05 11:30:29.000000000 +0100
+++ emms-volume_new.el  2019-09-05 11:25:45.605233100 +0100
@@ -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)
-- 
Jordan Wilson
    Sent from Gnus v5.13, GNU Emacs 26.3 on WINDOWS-NT

reply via email to

[Prev in Thread] Current Thread [Next in Thread]