Function: bookmark-bmenu-mark-all

bookmark-bmenu-mark-all is an interactive and byte-compiled function defined in bookmark.el.gz.

Signature

(bookmark-bmenu-mark-all)

Documentation

Mark all listed bookmarks to be displayed by v (bookmark-bmenu-select).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
(defun bookmark-bmenu-mark-all ()
  "Mark all listed bookmarks to be displayed by \\<bookmark-bmenu-mode-map>\\[bookmark-bmenu-select]."
  (interactive nil bookmark-bmenu-mode)
  (save-excursion
    (goto-char (point-min))
    (bookmark-bmenu-ensure-position)
    (while (not (eobp))
      (tabulated-list-put-tag ">" t))))