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