aboutsummaryrefslogtreecommitdiff
path: root/emms-playing-time.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-playing-time.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-playing-time.el')
-rw-r--r--emms-playing-time.el11
1 files changed, 4 insertions, 7 deletions
diff --git a/emms-playing-time.el b/emms-playing-time.el
index 920c9d5..bca96b1 100644
--- a/emms-playing-time.el
+++ b/emms-playing-time.el
@@ -1,6 +1,6 @@
;;; emms-playing-time.el --- Display emms playing time on mode line -*- lexical-binding: t; -*-
-;; Copyright (C) 2005, 2006, 2007, 2008, 2009, 2019 Free Software Foundation, Inc.
+;; Copyright (C) 2005-2021 Free Software Foundation, Inc.
;; Author: William Xu <william.xwl@gmail.com>, Yoni Rabkin (yrk@gnu.org)
@@ -52,21 +52,18 @@
(defcustom emms-playing-time-display-short-p nil
"Non-nil will only display elapsed time.
e.g., display 02:37 instead of 02:37/05:49."
- :type 'boolean
- :group 'emms-playing-time)
+ :type 'boolean)
(defcustom emms-playing-time-display-format " %s "
"Format used for displaying playing time."
- :type 'string
- :group 'emms-playing-time)
+ :type 'string)
(defcustom emms-playing-time-style 'time
"Style used for displaying playing time.
Valid styles are `time' (e.g., 01:30/4:20),
`bar' (e.g., [===> ]),
and `downtime' (e.g. -03:58)."
- :type 'symbol
- :group 'emms-playing-time)
+ :type 'symbol)
;;; Emms Playing Time