aboutsummaryrefslogtreecommitdiff
path: root/emms-volume.el
diff options
context:
space:
mode:
authorYoni Rabkin <yoni@rabkins.net>2021-04-17 16:55:01 -0400
committerYoni Rabkin <yoni@rabkins.net>2021-04-17 16:55:01 -0400
commitf992e4c98b1d472acb802ea2a149f087c2656034 (patch)
treed923d36742ae97f226e8f9db954176e2cd3f7dde /emms-volume.el
parent9412bf085da449fba77df89933ef22bff147a573 (diff)
*.el: Remove redundant `:group` arguments
Also, remove some redundant leading `*` in defcustom docstrings Patch by Stefan Monnier <monnier@iro.umontreal.ca>
Diffstat (limited to 'emms-volume.el')
-rw-r--r--emms-volume.el10
1 files changed, 4 insertions, 6 deletions
diff --git a/emms-volume.el b/emms-volume.el
index 655e587..98b99ee 100644
--- a/emms-volume.el
+++ b/emms-volume.el
@@ -1,6 +1,6 @@
;;; 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.
+;; Copyright (C) 2006-2021 Free Software Foundation, Inc.
;; Author: Martin Schoenmakers <aiviru@diamond-age.net>
;; Bruno Félix Rezende Ribeiro <oitofelix@gnu.org>
@@ -65,22 +65,20 @@
((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’."))))
- "*The function to use to change the volume.
+ "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)
(const :tag "MPD" emms-volume-mpd-change)
(const :tag "PulseAudio" emms-volume-pulse-change)
(const :tag "Mixerctl" emms-volume-mixerctl-change)
- (function :tag "Lisp function"))
- :group 'emms-volume)
+ (function :tag "Lisp function")))
(defcustom emms-volume-change-amount 2
"The amount to use when raising or lowering the volume using the
emms-volume interface.
This should be a positive integer."
- :type 'integer
- :group 'emms-volume)
+ :type 'integer)
;;;###autoload
(defun emms-volume-raise ()