Function: image-dired-read-comment

image-dired-read-comment is a byte-compiled function defined in image-dired.el.gz.

Signature

(image-dired-read-comment &optional FILE)

Documentation

Read comment for an image.

Optionally use old comment from FILE as initial value.

Source Code

;; Defined in /usr/src/emacs/lisp/image-dired.el.gz
(defun image-dired-read-comment (&optional file)
  "Read comment for an image.
Optionally use old comment from FILE as initial value."
  (let ((comment
         (read-string
          "Comment: "
          (if file (image-dired-get-comment file)))))
    comment))