Function: image-dired-dired-display-properties
image-dired-dired-display-properties is an interactive and
byte-compiled function defined in image-dired.el.gz.
Signature
(image-dired-dired-display-properties)
Documentation
Display properties for Dired file in the echo area.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/image-dired.el.gz
(defun image-dired-dired-display-properties ()
"Display properties for Dired file in the echo area."
(interactive)
(let* ((file (dired-get-filename))
(file-name (file-name-nondirectory file))
(dired-buf (buffer-name (current-buffer)))
(props (mapconcat #'identity (image-dired-list-tags file) ", "))
(comment (image-dired-get-comment file))
(message-log-max nil))
(if file-name
(message "%s"
(image-dired-format-properties-string
dired-buf
file-name
props
comment)))))