Function: bookmark-bmenu-unmark-all
bookmark-bmenu-unmark-all is an interactive and byte-compiled function
defined in bookmark.el.gz.
Signature
(bookmark-bmenu-unmark-all)
Documentation
Cancel all requested operations on all listed bookmarks.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
(defun bookmark-bmenu-unmark-all ()
"Cancel all requested operations on all listed bookmarks."
(interactive nil bookmark-bmenu-mode)
(save-excursion
(goto-char (point-min))
(bookmark-bmenu-ensure-position)
(while (not (eobp))
(tabulated-list-put-tag " " t))))