Function: image-dired-update-property
image-dired-update-property is a byte-compiled function defined in
image-dired.el.gz.
Signature
(image-dired-update-property PROP VALUE)
Documentation
Update text property PROP with value VALUE at point.
Source Code
;; Defined in /usr/src/emacs/lisp/image-dired.el.gz
(defun image-dired-update-property (prop value)
"Update text property PROP with value VALUE at point."
(let ((inhibit-read-only t))
(put-text-property
(point) (1+ (point))
prop
value)))