]> git.eshelyaron.com Git - emacs.git/commitdiff
Actually use lexical-binding in wid-browse.el
authorStefan Kangas <stefan@marxist.se>
Sun, 21 Mar 2021 16:04:32 +0000 (17:04 +0100)
committerStefan Kangas <stefan@marxist.se>
Sun, 21 Mar 2021 16:05:48 +0000 (17:05 +0100)
* lisp/wid-browse.el: Use lexical-binding.  I apparently forgot to
commit the lexical-binding cookie in my previous attempt.

lisp/wid-browse.el

index 39b3221762860009cb90fd2af8260777bd9cfb0d..54b71c9f9f61c88c3e515b4cf8d81727b029c837 100644 (file)
@@ -1,7 +1,7 @@
-;;; wid-browse.el --- functions for browsing widgets
-;;
+;;; wid-browse.el --- functions for browsing widgets  -*- lexical-binding: t -*-
+
 ;; Copyright (C) 1997, 2001-2021 Free Software Foundation, Inc.
-;;
+
 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
 ;; Keywords: extensions
 ;; Package: emacs
@@ -22,7 +22,7 @@
 ;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
 
 ;;; Commentary:
-;;
+
 ;; Widget browser.  See `widget.el'.
 
 ;;; Code:
@@ -38,7 +38,7 @@
 (defvar widget-browse-mode-map
   (let ((map (make-sparse-keymap)))
     (set-keymap-parent map widget-keymap)
-    (define-key map "q" 'bury-buffer)
+    (define-key map "q" #'bury-buffer)
     map)
   "Keymap for `widget-browse-mode'.")