Function: org-agenda-bulk-unmark-all

org-agenda-bulk-unmark-all is an interactive and byte-compiled function defined in org-agenda.el.gz.

Signature

(org-agenda-bulk-unmark-all)

Documentation

Remove all marks in the agenda buffer.

This will remove the markers and the overlays.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defun org-agenda-bulk-unmark-all ()
  "Remove all marks in the agenda buffer.
This will remove the markers and the overlays."
  (interactive)
  (if (null org-agenda-bulk-marked-entries)
      (message "No entry to unmark")
    (setq org-agenda-bulk-marked-entries nil)
    (org-agenda-bulk-remove-overlays (point-min) (point-max))))