]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/image.el (put-image): Fix typo.
authorVisuwesh <visuweshm@gmail.com>
Thu, 14 Jul 2022 17:33:34 +0000 (19:33 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 14 Jul 2022 17:34:43 +0000 (19:34 +0200)
* lisp/image.el (put-image): Actually use the image-map keymap
(bug#56554).

lisp/image.el

index f4f73fd31f2060eaa6ca40a43360970e7c39540b..02e5c85fafd0c8fbdcb09da0fdb47a3ac73305c3 100644 (file)
@@ -613,7 +613,7 @@ means display it in the right marginal area."
       (put-text-property 0 (length string) 'display prop string)
       (overlay-put overlay 'put-image t)
       (overlay-put overlay 'before-string string)
-      (overlay-put overlay 'map image-map)
+      (overlay-put overlay 'keymap image-map)
       overlay)))