aboutsummaryrefslogtreecommitdiff
path: root/emms-info.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-info.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-info.el')
-rw-r--r--emms-info.el22
1 files changed, 9 insertions, 13 deletions
diff --git a/emms-info.el b/emms-info.el
index 9a49a5c..a120236 100644
--- a/emms-info.el
+++ b/emms-info.el
@@ -1,6 +1,6 @@
;;; emms-info.el --- Retrieving track information -*- lexical-binding: t; -*-
-;; Copyright (C) 2005-2020 Free Software Foundation, Inc.
+;; Copyright (C) 2005-2021 Free Software Foundation, Inc.
;; Author: Jorgen Schaefer <forcer@forcix.cx>
@@ -51,30 +51,26 @@
:group 'emms)
(defcustom emms-info-auto-update t
- "*Non-nil when EMMS should update track information if the file changes.
+ "Non-nil when EMMS should update track information if the file changes.
This will cause hard drive activity on track loading. If this is
too annoying for you, set this variable to nil."
- :type 'boolean
- :group 'emms-info)
+ :type 'boolean)
(defcustom emms-info-asynchronously t
- "*Non-nil when track information should be loaded asynchronously.
+ "Non-nil when track information should be loaded asynchronously.
This requires `emms-later-do', which should come with EMMS."
- :type 'boolean
- :group 'emms-info)
+ :type 'boolean)
(defcustom emms-info-report-each-num-tracks 200
- "*Non-zero will report progress information every number of tracks.
+ "Non-zero will report progress information every number of tracks.
The default is to display a message every 200 tracks.
This variable is only used when adding tracks asynchronously."
- :type 'integer
- :group 'emms-info)
+ :type 'integer)
(defcustom emms-info-functions nil
- "*Functions which add information to tracks.
+ "Functions which add information to tracks.
Each is called with a track as argument."
- :type 'hook
- :group 'emms-info)
+ :type 'hook)
(defvar emms-info-asynchronous-tracks 0
"Number of tracks we're waiting for to be done.")