From: Stefan Kangas Date: Sun, 21 Mar 2021 16:04:32 +0000 (+0100) Subject: Actually use lexical-binding in wid-browse.el X-Git-Tag: emacs-28.0.90~3185 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=574eadbdaf69a70f9eba9d6ab5b960649b88de15;p=emacs.git Actually use lexical-binding in wid-browse.el * lisp/wid-browse.el: Use lexical-binding. I apparently forgot to commit the lexical-binding cookie in my previous attempt. --- diff --git a/lisp/wid-browse.el b/lisp/wid-browse.el index 39b32217628..54b71c9f9f6 100644 --- a/lisp/wid-browse.el +++ b/lisp/wid-browse.el @@ -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 ;; Keywords: extensions ;; Package: emacs @@ -22,7 +22,7 @@ ;; along with GNU Emacs. If not, see . ;;; 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'.")