~vcs-imports-ii/emms/master

« back to all changes in this revision

Viewing changes to emms-mode-line.el

  • Committer: Yoni Rabkin
  • Date: 2021-04-17 20:55:01 UTC
  • Revision ID: git-v1:f992e4c98b1d472acb802ea2a149f087c2656034
*.el: Remove redundant `:group` arguments
Also, remove some redundant leading `*` in defcustom docstrings

Patch by Stefan Monnier <monnier@iro.umontreal.ca>

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
;;; emms-mode-line.el --- Mode-Line and titlebar infos for emms  -*- lexical-binding: t; -*-
2
2
 
3
 
;; Copyright (C) 2004, 2005, 2006, 2007, 2008,
4
 
;;   2009 Free Software Foundation, Inc.
 
3
;; Copyright (C) 2004-2021  Free Software Foundation, Inc.
5
4
 
6
5
;; Author: Mario Domgörgen <kanaldrache@gmx.de>
7
6
;; Keywords: multimedia
41
40
 
42
41
(defcustom emms-mode-line-mode-line-function 'emms-mode-line-playlist-current
43
42
  "Function for showing infos in mode-line or nil if don't want to."
44
 
  :type '(choice (const :tag "Don't show info on mode-line" nil) function)
45
 
  :group 'emms-mode-line)
 
43
  :type '(choice (const :tag "Don't show info on mode-line" nil) function))
46
44
 
47
45
(defcustom emms-mode-line-titlebar-function nil
48
46
  "Function for showing infos in titlebar or nil if you don't want to."
49
 
  :type '(choice (const :tag "Don't show info on titlebar" nil) function)
50
 
  :group 'emms-mode-line)
 
47
  :type '(choice (const :tag "Don't show info on titlebar" nil) function))
51
48
 
52
49
(defcustom emms-mode-line-format " [ %s ] "
53
50
  "String used for displaying the current track in mode-line and titlebar."