aboutsummaryrefslogtreecommitdiff
path: root/emms-volume.el
diff options
context:
space:
mode:
authorYoni Rabkin <yoni@rabkins.net>2021-03-03 12:33:44 -0500
committerYoni Rabkin <yoni@rabkins.net>2021-03-03 12:33:44 -0500
commit038821909b21cab382d442f8f7e270a9deb4de26 (patch)
treecebfc1239a9e3ba23d682823652e8b55aecb9656 /emms-volume.el
parent7ca6cd30769b232bfefdd3653d43efbb5a7566c0 (diff)
lexical declaration
Diffstat (limited to 'emms-volume.el')
-rw-r--r--emms-volume.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/emms-volume.el b/emms-volume.el
index 078eef5..655e587 100644
--- a/emms-volume.el
+++ b/emms-volume.el
@@ -1,4 +1,4 @@
-;;; emms-volume.el --- Volume functions and a minor mode to adjust volume easily
+;;; emms-volume.el --- Volume functions and a minor mode to adjust volume easily -*- lexical-binding: t; -*-
;; Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
@@ -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)