aboutsummaryrefslogtreecommitdiff
path: root/emms-history.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-history.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-history.el')
-rw-r--r--emms-history.el11
1 files changed, 4 insertions, 7 deletions
diff --git a/emms-history.el b/emms-history.el
index f5e4ca6..973113d 100644
--- a/emms-history.el
+++ b/emms-history.el
@@ -1,6 +1,6 @@
;;; emms-history.el -- save all playlists when exiting emacs -*- lexical-binding: t; -*-
-;; Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+;; Copyright (C) 2006-2021 Free Software Foundation, Inc.
;;
;; Author: Ye Wenbin <wenbinye@163.com>
@@ -45,19 +45,16 @@ Emacs."
(defcustom emms-history-file (concat (file-name-as-directory emms-directory) "history")
"The file to save playlists in."
- :type 'string
- :group 'emms-history)
+ :type 'string)
(defcustom emms-history-start-playing nil
"If non-nil emms starts playing the current track after
`emms-history-load' was invoked."
- :type 'boolean
- :group 'emms-history)
+ :type 'boolean)
(defcustom emms-history-file-coding-system 'utf-8
"Coding system used for saving `emms-history-file'."
- :type 'coding-system
- :group 'emms-history)
+ :type 'coding-system)
(defun emms-history-save ()
"Save all playlists that are open in this Emacs session."