Function: gnus-bookmark-alist-from-buffer
gnus-bookmark-alist-from-buffer is a byte-compiled function defined in
gnus-bookmark.el.gz.
Signature
(gnus-bookmark-alist-from-buffer)
Documentation
Return a gnus-bookmark-alist from the current buffer.
The buffer must of course contain Gnus bookmark format information. Does not care from where in the buffer it is called, and does not affect point.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-bookmark.el.gz
(defun gnus-bookmark-alist-from-buffer ()
"Return a `gnus-bookmark-alist' from the current buffer.
The buffer must of course contain Gnus bookmark format information.
Does not care from where in the buffer it is called, and does not
affect point."
(save-excursion
(goto-char (point-min))
(if (search-forward
gnus-bookmark-end-of-version-stamp-marker nil t)
(read (current-buffer))
;; Else no hope of getting information here.
(error "Not Gnus bookmark format"))))