Function: gnus-bookmark-bmenu-select

gnus-bookmark-bmenu-select is an interactive and byte-compiled function defined in gnus-bookmark.el.gz.

Signature

(gnus-bookmark-bmenu-select)

Documentation

Select this line's bookmark; also display bookmarks marked with >.

You can mark bookmarks with the m (gnus-bookmark-bmenu-mark) command.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-bookmark.el.gz
(defun gnus-bookmark-bmenu-select ()
  "Select this line's bookmark; also display bookmarks marked with `>'.
You can mark bookmarks with the
\\<gnus-bookmark-bmenu-mode-map>\\[gnus-bookmark-bmenu-mark]
command."
  (interactive nil gnus-bookmark-bmenu-mode)
  (if (gnus-bookmark-bmenu-check-position)
      (let ((bmrk (gnus-bookmark-bmenu-bookmark))
            (menu (current-buffer)))
        (goto-char (point-min))
        (delete-other-windows)
        (gnus-bookmark-jump bmrk)
        (bury-buffer menu))))