diff options
| author | Lars Ingebrigtsen | 2019-07-28 22:48:18 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-07-28 22:48:18 +0200 |
| commit | 776872766cd3af5ef68785236dcc05b378e8f267 (patch) | |
| tree | 6104b7a04dd0ef07bcb805890d3ef31d51f6b70d | |
| parent | a0df4900552c49f1bfc2f94176089875c41307a6 (diff) | |
| download | emacs-776872766cd3af5ef68785236dcc05b378e8f267.tar.gz emacs-776872766cd3af5ef68785236dcc05b378e8f267.zip | |
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." | |||
| 549 | `(display ,(if slice | 549 | `(display ,(if slice |
| 550 | (list (cons 'slice slice) image) | 550 | (list (cons 'slice slice) image) |
| 551 | image) | 551 | image) |
| 552 | rear-nonsticky (display) | 552 | rear-nonsticky t |
| 553 | keymap ,image-map)))) | 553 | keymap ,image-map)))) |
| 554 | 554 | ||
| 555 | 555 | ||