aboutsummaryrefslogtreecommitdiff
path: root/emms-show-all.el
diff options
context:
space:
mode:
authorYoni Rabkin <yoni@rabkins.net>2021-04-20 17:34:55 -0400
committerYoni Rabkin <yoni@rabkins.net>2021-04-20 17:34:55 -0400
commita51ac5b1fa967413d81530a722a5866eb43c4e4b (patch)
tree43dcf7f3389ae6091ec23f7b6c1dbbf14e6a9b8d /emms-show-all.el
parentf992e4c98b1d472acb802ea2a149f087c2656034 (diff)
Change the function quoting style to help the compiler.
Patch by Stefan Monnier
Diffstat (limited to 'emms-show-all.el')
-rw-r--r--emms-show-all.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/emms-show-all.el b/emms-show-all.el
index fa7181d..b08e5bd 100644
--- a/emms-show-all.el
+++ b/emms-show-all.el
@@ -1,6 +1,6 @@
;;; emms-show-all.el --- Detailed track information for Emms. -*- lexical-binding: t; -*-
-;; Copyright (C) 2016 Free Software Foundation, Inc.
+;; Copyright (C) 2016-2021 Free Software Foundation, Inc.
;; Author: Yoni Rabkin <yrk@gnu.org>
@@ -21,10 +21,10 @@
;; Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
;;; Commentary:
-;;;
-;;; Shows all of the available information Emms can provide on the
-;;; currently playing track. Based on an idea suggested on the
-;;; emms-help mailing list by Ivan Truskov.
+;;
+;; Shows all of the available information Emms can provide on the
+;; currently playing track. Based on an idea suggested on the
+;; emms-help mailing list by Ivan Truskov.
;;; Code:
@@ -44,8 +44,8 @@
(defvar emms-show-all-mode-map
(let ((map (make-sparse-keymap)))
(set-keymap-parent map text-mode-map)
- (define-key map (kbd "q") 'emms-show-all-mode-bury-buffer)
- (define-key map (kbd "E") 'emms-show-all-edit-track)
+ (define-key map (kbd "q") #'emms-show-all-mode-bury-buffer)
+ (define-key map (kbd "E") #'emms-show-all-edit-track)
map)
"Keymap for `emms-show-all-mode'.")