Function: nndraft-articles
nndraft-articles is a byte-compiled function defined in nndraft.el.gz.
Signature
(nndraft-articles)
Documentation
Return the list of messages in the group.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nndraft.el.gz
(defun nndraft-articles ()
"Return the list of messages in the group."
(gnus-make-directory nndraft-current-directory)
(sort
(mapcar #'string-to-number
(directory-files nndraft-current-directory nil "\\`[0-9]+\\'" t))
#'<))