Function: image-dired-comment-thumbnail

image-dired-comment-thumbnail is an interactive and byte-compiled function defined in image-dired.el.gz.

Signature

(image-dired-comment-thumbnail)

Documentation

Add comment to current thumbnail in thumbnail buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/image/image-dired.el.gz
(defun image-dired-comment-thumbnail ()
  "Add comment to current thumbnail in thumbnail buffer."
  (interactive nil image-dired-thumbnail-mode)
  (let* ((file (image-dired-original-file-name))
         (comment (image-dired-read-comment file)))
    (image-dired-write-comments (list (cons file comment)))
    (image-dired-update-property 'comment comment))
  (image-dired--update-header-line))