Function: image-dired-unmark-all-marks

image-dired-unmark-all-marks is an interactive and byte-compiled function defined in image-dired.el.gz.

Signature

(image-dired-unmark-all-marks)

Documentation

Remove all marks from all files in associated Dired buffer.

Also update the marks in the thumbnail buffer.

Probably introduced at or before Emacs version 29.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/image/image-dired.el.gz
(defun image-dired-unmark-all-marks ()
  "Remove all marks from all files in associated Dired buffer.
Also update the marks in the thumbnail buffer."
  (interactive nil image-dired-thumbnail-mode image-dired-image-mode)
  (image-dired--do-mark-command nil t
    (dired-unmark-all-marks))
  (image-dired--with-thumbnail-buffer
    (image-dired--thumb-update-marks)))