Function: org-agenda-bulk-toggle-all
org-agenda-bulk-toggle-all is an interactive and byte-compiled
function defined in org-agenda.el.gz.
Signature
(org-agenda-bulk-toggle-all)
Documentation
Toggle all marks for bulk action.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defun org-agenda-bulk-toggle-all ()
"Toggle all marks for bulk action."
(interactive)
(save-excursion
(goto-char (point-min))
(while (ignore-errors
(goto-char (next-single-property-change (point) 'org-hd-marker)))
(org-agenda-bulk-toggle))))