Use lexical-binding in iimage.el

* lisp/iimage.el: Use lexical-binding.  Remove redundant :group args.
This commit is contained in:
Stefan Kangas 2021-03-24 09:09:52 +01:00
parent df06cfe4a9
commit c0d24d5316

View file

@ -1,4 +1,4 @@
;;; iimage.el --- Inline image minor mode.
;;; iimage.el --- Inline image minor mode. -*- lexical-binding: t -*-
;; Copyright (C) 2004-2021 Free Software Foundation, Inc.
@ -51,8 +51,7 @@
(defcustom iimage-mode-image-search-path nil
"List of directories to search for image files for iimage-mode."
:type '(choice (const nil) (repeat directory))
:group 'iimage)
:type '(choice (const nil) (repeat directory)))
(defvar iimage-mode-image-filename-regex
(concat "[-+./_0-9a-zA-Z]+\\."
@ -74,14 +73,12 @@ Examples of image filename patterns to match:
\\=`file://foo.png\\='
\\[\\[foo.gif]]
<foo.png>
foo.JPG
"
:type '(alist :key-type regexp :value-type integer)
:group 'iimage)
foo.JPG"
:type '(alist :key-type regexp :value-type integer))
(defvar iimage-mode-map
(let ((map (make-sparse-keymap)))
(define-key map "\C-l" 'iimage-recenter)
(define-key map "\C-l" #'iimage-recenter)
map)
"Keymap used in `iimage-mode'.")