]> git.eshelyaron.com Git - emacs.git/commitdiff
Use lexical-binding in iimage.el
authorStefan Kangas <stefan@marxist.se>
Wed, 24 Mar 2021 08:09:52 +0000 (09:09 +0100)
committerStefan Kangas <stefan@marxist.se>
Wed, 24 Mar 2021 08:09:52 +0000 (09:09 +0100)
* lisp/iimage.el: Use lexical-binding.  Remove redundant :group args.

lisp/iimage.el

index cc1461d7b0f82b16b844d0712c6b1ddabbe95c06..192530a8e6af258d4db288c3f5ab1ced2be4d0e0 100644 (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'.")