Function: nnml-current-group-article-to-file-alist
nnml-current-group-article-to-file-alist is a byte-compiled function
defined in nnml.el.gz.
Signature
(nnml-current-group-article-to-file-alist)
Documentation
Return an alist of article/file pairs in the current group.
Use the nov database for the current group if available.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nnml.el.gz
(defun nnml-current-group-article-to-file-alist ()
"Return an alist of article/file pairs in the current group.
Use the nov database for the current group if available."
(if (or nnml-use-compressed-files
gnus-nov-is-evil
nnml-nov-is-evil
(not (file-exists-p
(expand-file-name nnml-nov-file-name
nnml-current-directory))))
(nnheader-article-to-file-alist nnml-current-directory)
;; build list from .overview if available
(with-current-buffer (nnml-get-nov-buffer nnml-current-group)
(let ((alist nil)
art)
(goto-char (point-min))
(while (not (eobp))
(setq art (read (current-buffer)))
;; assume file name is unadorned (ie. not compressed etc)
(push (cons art (int-to-string art)) alist)
(forward-line 1))
alist))))