From 5f1fbf6b356aefc0645f9494a4a04ee19eb5510f Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Sun, 3 Nov 2002 08:34:45 +0000 Subject: [PATCH] (insert-image): Don't make intangible since adjust_point_for_property should be sufficient by default. --- lisp/image.el | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lisp/image.el b/lisp/image.el index bc6155e9d9c..ac1ef557edc 100644 --- a/lisp/image.el +++ b/lisp/image.el @@ -203,11 +203,7 @@ means display it in the right marginal area." (let ((start (point))) (insert string) (add-text-properties start (point) - (list 'display image - ;; `image' has the right properties to - ;; mark an intangible field. - 'intangible image - 'rear-nonsticky (list 'display))))) + `(display ,image rear-nonsticky (display))))) ;;;###autoload -- 2.39.2