Function: mh-ps-print-range
mh-ps-print-range is a byte-compiled function defined in
mh-print.el.gz.
Signature
(mh-ps-print-range RANGE FILE)
Documentation
Print RANGE to FILE.
This is the function that actually does the work. If FILE is nil, then the messages are spooled to the printer.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-print.el.gz
(defun mh-ps-print-range (range file)
"Print RANGE to FILE.
This is the function that actually does the work.
If FILE is nil, then the messages are spooled to the printer."
(mh-iterate-on-range msg range
(unwind-protect
(mh-ps-spool-msg msg))
(mh-notate msg mh-note-printed mh-cmd-note))
(ps-despool file))