Function: bookmark-bmenu-delete-all
bookmark-bmenu-delete-all is an interactive and byte-compiled function
defined in bookmark.el.gz.
Signature
(bookmark-bmenu-delete-all)
Documentation
Mark all listed bookmarks as to be deleted.
To remove all deletion marks, use U (bookmark-bmenu-unmark-all).
To carry out the deletions that you've marked, use x (bookmark-bmenu-execute-deletions).
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
(defun bookmark-bmenu-delete-all ()
"Mark all listed bookmarks as to be deleted.
To remove all deletion marks, use \\<bookmark-bmenu-mode-map>\\[bookmark-bmenu-unmark-all].
To carry out the deletions that you've marked, use \\<bookmark-bmenu-mode-map>\\[bookmark-bmenu-execute-deletions]."
(interactive nil bookmark-bmenu-mode)
(save-excursion
(goto-char (point-min))
(bookmark-bmenu-ensure-position)
(while (not (eobp))
(tabulated-list-put-tag "D" t))))