Function: mh-range-to-msg-list
mh-range-to-msg-list is an autoloaded and byte-compiled function
defined in mh-seq.el.gz.
Signature
(mh-range-to-msg-list RANGE)
Documentation
Return a list of messages for RANGE.
Check the documentation of mh-interactive-range to see how
RANGE is read in interactive use.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-seq.el.gz
;;;###mh-autoload
(defun mh-range-to-msg-list (range)
"Return a list of messages for RANGE.
Check the documentation of `mh-interactive-range' to see how
RANGE is read in interactive use."
(let (msg-list)
(mh-iterate-on-range msg range
(push msg msg-list))
(nreverse msg-list)))