Mercurial > emacs
changeset 64556:a0c4a6096f55
(insert-image-file): Add yank-handler.
(image-file-yank-handler): Yank handler to make unique copies of
images when they are yanked into a buffer next to each other.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Thu, 21 Jul 2005 08:56:23 +0000 |
parents | 8a35276b0990 |
children | c68bf82df188 |
files | lisp/image-file.el |
diffstat | 1 files changed, 14 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/image-file.el Thu Jul 21 08:56:04 2005 +0000 +++ b/lisp/image-file.el Thu Jul 21 08:56:23 2005 +0000 @@ -118,6 +118,7 @@ (create-image data nil t)) (props `(display ,image + yank-handler (image-file-yank-handler) intangible ,image rear-nonsticky (display intangible) ;; This a cheap attempt to make the whole buffer @@ -135,6 +136,19 @@ (setq truncate-lines t)))) rval)) +;; We use a yank-handler to make yanked images unique, so that +;; yanking two copies of the same image next to each other are +;; recognized as two different images. +(defun image-file-yank-handler (string) + "Yank handler for inserting an image into a buffer." + (let ((image (get-text-property 0 'display string))) + (if (consp image) + (put-text-property 0 (length string) + 'display + (cons (car image) (cdr image)) + string)) + (insert string))) + (put 'image-file-handler 'safe-magic t) (defun image-file-handler (operation &rest args) "Filename handler for inserting image files.