Function: image-dired-format-properties-string
image-dired-format-properties-string is a byte-compiled function
defined in image-dired.el.gz.
Signature
(image-dired-format-properties-string BUF FILE PROPS COMMENT)
Documentation
Format display properties.
BUF is the associated Dired buffer, FILE is the original image file name, PROPS is a stringified list of tags and COMMENT is the image file's comment.
Source Code
;; Defined in /usr/src/emacs/lisp/image-dired.el.gz
(defun image-dired-format-properties-string (buf file props comment)
"Format display properties.
BUF is the associated Dired buffer, FILE is the original image file
name, PROPS is a stringified list of tags and COMMENT is the image file's
comment."
(format-spec
image-dired-display-properties-format
(list
(cons ?b (or buf ""))
(cons ?f file)
(cons ?t (or props ""))
(cons ?c (or comment "")))))