diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-07-28 22:48:18 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-07-28 22:48:18 +0200 |
commit | 776872766cd3af5ef68785236dcc05b378e8f267 (patch) | |
tree | 6104b7a04dd0ef07bcb805890d3ef31d51f6b70d | |
parent | a0df4900552c49f1bfc2f94176089875c41307a6 (diff) | |
download | emacs-776872766cd3af5ef68785236dcc05b378e8f267.tar.gz |
Make the image keymaps not extend after the image
* lisp/image.el (insert-image): Make all the properties
rear-nonsticky. Before this change, the keymap would extend after
the image.
-rw-r--r-- | lisp/image.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/image.el b/lisp/image.el index c3e28655c38..b36a5138b1b 100644 --- a/lisp/image.el +++ b/lisp/image.el @@ -549,7 +549,7 @@ height of the image; integer values are taken as pixel values." `(display ,(if slice (list (cons 'slice slice) image) image) - rear-nonsticky (display) + rear-nonsticky t keymap ,image-map)))) |