aboutsummaryrefslogtreecommitdiff
path: root/emms-mode-line.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-mode-line.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-mode-line.el')
-rw-r--r--emms-mode-line.el9
1 files changed, 3 insertions, 6 deletions
diff --git a/emms-mode-line.el b/emms-mode-line.el
index 02d3a33..2c49075 100644
--- a/emms-mode-line.el
+++ b/emms-mode-line.el
@@ -1,7 +1,6 @@
;;; emms-mode-line.el --- Mode-Line and titlebar infos for emms -*- lexical-binding: t; -*-
-;; Copyright (C) 2004, 2005, 2006, 2007, 2008,
-;; 2009 Free Software Foundation, Inc.
+;; Copyright (C) 2004-2021 Free Software Foundation, Inc.
;; Author: Mario Domgörgen <kanaldrache@gmx.de>
;; Keywords: multimedia
@@ -41,13 +40,11 @@
(defcustom emms-mode-line-mode-line-function 'emms-mode-line-playlist-current
"Function for showing infos in mode-line or nil if don't want to."
- :type '(choice (const :tag "Don't show info on mode-line" nil) function)
- :group 'emms-mode-line)
+ :type '(choice (const :tag "Don't show info on mode-line" nil) function))
(defcustom emms-mode-line-titlebar-function nil
"Function for showing infos in titlebar or nil if you don't want to."
- :type '(choice (const :tag "Don't show info on titlebar" nil) function)
- :group 'emms-mode-line)
+ :type '(choice (const :tag "Don't show info on titlebar" nil) function))
(defcustom emms-mode-line-format " [ %s ] "
"String used for displaying the current track in mode-line and titlebar."