aboutsummaryrefslogtreecommitdiff
path: root/emms-playlist-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-playlist-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-playlist-mode.el')
-rw-r--r--emms-playlist-mode.el33
1 files changed, 14 insertions, 19 deletions
diff --git a/emms-playlist-mode.el b/emms-playlist-mode.el
index f851b63..9692f19 100644
--- a/emms-playlist-mode.el
+++ b/emms-playlist-mode.el
@@ -1,6 +1,6 @@
;;; emms-playlist-mode.el --- Playlist mode for Emms. -*- lexical-binding: t; -*-
-;; Copyright (C) 2005-2019 Free Software Foundation, Inc.
+;; Copyright (C) 2005-2021 Free Software Foundation, Inc.
;; Author: Yoni Rabkin <yrk@gnu.org>
@@ -22,11 +22,11 @@
;;; Commentary:
;;;
-;;; This is a method of displaying and manipulating the different Emms
-;;; playlist buffers.
-;;;
-;;; Emms developer's motto: "When forcer says (require 'jump) we say
-;;; (funcall #'jump height)"
+;; This is a method of displaying and manipulating the different Emms
+;; playlist buffers.
+;;
+;; Emms developer's motto: "When forcer says (require 'jump) we say
+;; (funcall #'jump height)"
;;; Code:
@@ -64,23 +64,20 @@
:group 'emms)
(defcustom emms-playlist-mode-open-playlists nil
- "*Determine whether to open playlists in a new EMMS buffer on RET.
+ "Determine whether to open playlists in a new EMMS buffer on RET.
This is useful if you have a master playlist buffer that is
composed of other playlists."
- :type 'boolean
- :group 'emms-playlist-mode)
+ :type 'boolean)
(defcustom emms-playlist-mode-window-width 25
- "*Determine the width of the Emms popup window.
+ "Determine the width of the Emms popup window.
The value should a positive integer."
- :type 'integer
- :group 'emms-playlist-mode)
+ :type 'integer)
(defcustom emms-playlist-mode-center-when-go nil
- "*Determine whether to center on the currently selected track.
+ "Determine whether to center on the currently selected track.
This is true for every invocation of `emms-playlist-mode-go'."
- :type 'boolean
- :group 'emms-playlist-mode)
+ :type 'boolean)
;;; --------------------------------------------------------
;;; Faces
@@ -94,8 +91,7 @@ This is true for every invocation of `emms-playlist-mode-go'."
(((type tty) (class mono))
(:inverse-video t))
(t (:background "Blue")))
- "Face for the tracks in a playlist buffer."
- :group 'emms-playlist-mode)
+ "Face for the tracks in a playlist buffer.")
(defface emms-playlist-selected-face
'((((class color) (background dark))
@@ -105,8 +101,7 @@ This is true for every invocation of `emms-playlist-mode-go'."
(((type tty) (class mono))
(:inverse-video t))
(t (:background "blue3")))
- "Face for highlighting the selected track."
- :group 'emms-playlist-mode)
+ "Face for highlighting the selected track.")
;;; --------------------------------------------------------
;;; Keys