aboutsummaryrefslogtreecommitdiff
path: root/emms-metaplaylist-mode.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-metaplaylist-mode.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-metaplaylist-mode.el')
-rw-r--r--emms-metaplaylist-mode.el18
1 files changed, 7 insertions, 11 deletions
diff --git a/emms-metaplaylist-mode.el b/emms-metaplaylist-mode.el
index 40d7b74..5e78226 100644
--- a/emms-metaplaylist-mode.el
+++ b/emms-metaplaylist-mode.el
@@ -1,6 +1,6 @@
;;; emms-metaplaylist-mode.el --- A major mode for lists of Emms playlists -*- lexical-binding: t; -*-
-;; Copyright (C) 2006, 2007, 2008, 2009, 2017-2018 Free Software Foundation, Inc.
+;; Copyright (C) 2006-2021 Free Software Foundation, Inc.
;; Author: Yoni Rabkin <yrk@gnu.org>
@@ -43,14 +43,12 @@
:group 'multimedia)
(defcustom emms-metaplaylist-mode-buffer-name "*Emms Playlist Buffers*"
- "*Name of the buffer in which Emms playlists will be listed."
- :type 'string
- :group 'emms-metaplaylist-mode)
+ "Name of the buffer in which Emms playlists will be listed."
+ :type 'string)
(defcustom emms-metaplaylist-mode-hooks nil
- "*List of hooks to run on entry to emms-metaplaylist-mode."
- :type 'list
- :group 'emms-metaplaylist-mode)
+ "List of hooks to run on entry to emms-metaplaylist-mode."
+ :type 'list)
(defface emms-metaplaylist-mode-face
'((((class color) (background dark))
@@ -60,8 +58,7 @@
(((type tty) (class mono))
(:inverse-video t))
(t (:background "WhiteSmoke")))
- "Face for the buffer names in the playlists buffer."
- :group 'emms-metaplaylist-mode)
+ "Face for the buffer names in the playlists buffer.")
(defface emms-metaplaylist-mode-current-face
'((((class color) (background dark))
@@ -71,8 +68,7 @@
(((type tty) (class mono))
(:inverse-video t))
(t (:background "red3")))
- "Face for the current buffer name in the playlists buffer."
- :group 'emms-metaplaylist-mode)
+ "Face for the current buffer name in the playlists buffer.")
;;; --------------------------------------------------------
;;; Keymap