Function: image-dired-dired-comment-files
image-dired-dired-comment-files is an autoloaded, interactive and
byte-compiled function defined in image-dired.el.gz.
Signature
(image-dired-dired-comment-files)
Documentation
Add comment to current or marked files in Dired.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/image-dired.el.gz
;;;###autoload
(defun image-dired-dired-comment-files ()
"Add comment to current or marked files in Dired."
(interactive)
(let ((comment (image-dired-read-comment)))
(image-dired-write-comments
(mapcar
(lambda (curr-file)
(cons curr-file comment))
(dired-get-marked-files)))))