diff options
Diffstat (limited to 'lisp/image-file.el')
-rw-r--r-- | lisp/image-file.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/image-file.el b/lisp/image-file.el index 6cadc42110f..26f16d1ed25 100644 --- a/lisp/image-file.el +++ b/lisp/image-file.el @@ -140,7 +140,7 @@ absolute file name and number of characters inserted." "Yank handler for inserting an image into a buffer." (let ((len (length string)) (image (get-text-property 0 'display string))) - (remove-text-properties 0 len yank-excluded-properties string) + (remove-list-of-text-properties 0 len yank-excluded-properties string) (if (consp image) (add-text-properties 0 (or (next-single-property-change 0 'image-counter string) |