Variable: gnus-bookmark-alist
gnus-bookmark-alist is a variable defined in gnus-bookmark.el.gz.
Value
nil
Documentation
Association list of Gnus bookmarks and their records.
The format of the alist is
(BMK1 BMK2 ...)
where each BMK is of the form
(NAME
(group . GROUP)
(message-id . MESSAGE-ID)
(author . AUTHOR)
(date . DATE)
(subject . SUBJECT)
(annotation . ANNOTATION))
So the cdr of each bookmark is an alist too.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-bookmark.el.gz
(defvar gnus-bookmark-alist ()
"Association list of Gnus bookmarks and their records.
The format of the alist is
(BMK1 BMK2 ...)
where each BMK is of the form
\(NAME
(group . GROUP)
(message-id . MESSAGE-ID)
(author . AUTHOR)
(date . DATE)
(subject . SUBJECT)
(annotation . ANNOTATION))
So the cdr of each bookmark is an alist too.")