diff options
author | Fran Burstall <feb@maths.bath.ac.uk> | 2018-09-24 20:07:23 +0100 |
---|---|---|
committer | Fran Burstall <feb@maths.bath.ac.uk> | 2018-09-24 20:07:23 +0100 |
commit | 51266993f5de3dec88ae3486d22ce40a72ab3ba4 (patch) | |
tree | fc563db5f69e35d587cedce99b05f1bd4123cad8 /lisp | |
parent | f3d622108048c2470797f4cfb77e67db9f72fd3c (diff) |
lisp/emms-setup.el: remove explicit emms-playlist-limit activation
emms-playlist-limit only needs to be required as it no
longer sets any hooks
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/emms-setup.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/emms-setup.el b/lisp/emms-setup.el index fde9212..a777d1d 100644 --- a/lisp/emms-setup.el +++ b/lisp/emms-setup.el @@ -1,6 +1,6 @@ ;;; emms-setup.el --- Setup script for EMMS -;; Copyright (C) 2005, 2006, 2007, 2008, 2009, 2015 Free Software +;; Copyright (C) 2005, 2006, 2007, 2008, 2009, 2015, 2018 Free Software ;; Foundation, Inc. ;; Author: Yoni Rabkin <yrk@gnu.org> @@ -119,7 +119,7 @@ the stable features which come with the Emms distribution." (when (executable-find emms-info-opusinfo-program-name) (add-to-list 'emms-info-functions 'emms-info-opusinfo)) (setq emms-track-description-function 'emms-info-track-description) - (when (fboundp 'emms-cache) ; work around compiler warning + (when (fboundp 'emms-cache) ; work around compiler warning (emms-cache 1)) (emms-mode-line 1) (emms-mode-line-blank) @@ -127,8 +127,7 @@ the stable features which come with the Emms distribution." (emms-playing-time 1) (add-to-list 'emms-info-functions 'emms-info-cueinfo) (add-hook 'emms-player-started-hook 'emms-last-played-update-current) - (emms-score 1) - (emms-playlist-limit 1)) + (emms-score 1)) ;;;###autoload |