From a51ac5b1fa967413d81530a722a5866eb43c4e4b Mon Sep 17 00:00:00 2001 From: Yoni Rabkin Date: Tue, 20 Apr 2021 17:34:55 -0400 Subject: Change the function quoting style to help the compiler. Patch by Stefan Monnier --- emms-score.el | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'emms-score.el') diff --git a/emms-score.el b/emms-score.el index 1537322..e9fb530 100644 --- a/emms-score.el +++ b/emms-score.el @@ -1,7 +1,6 @@ ;;; emms-score.el --- Scoring system for mp3player -*- lexical-binding: t; -*- -;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, -;; 2009, 2018 Free Software Foundation, Inc. +;; Copyright (C) 2003-2021 Free Software Foundation, Inc. ;; Authors: Jean-Philippe Theberge , ;; Yoni Rabkin @@ -88,13 +87,13 @@ off otherwise." (progn (setq emms-score-enabled-p t) (emms-score-load-hash) - (setq emms-ok-track-function 'emms-score-ok-track-function) + (setq emms-ok-track-function #'emms-score-ok-track-function) (unless noninteractive - (add-hook 'kill-emacs-hook 'emms-score-save-hash))) + (add-hook 'kill-emacs-hook #'emms-score-save-hash))) (setq emms-score-enabled-p nil) (emms-score-save-hash) - (setq emms-ok-track-function 'emms-default-ok-track-function) - (remove-hook 'kill-emacs-hook 'emms-score-save-hash))) + (setq emms-ok-track-function #'emms-default-ok-track-function) + (remove-hook 'kill-emacs-hook #'emms-score-save-hash))) ;;;###autoload (defun emms-score-enable () -- cgit v1.2.3