Function: mh-scan-format

mh-scan-format is an autoloaded and byte-compiled function defined in mh-scan.el.gz.

Signature

(mh-scan-format)

Documentation

Return the output format argument for the scan program.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-scan.el.gz
;;;###mh-autoload
(defun mh-scan-format ()
  "Return the output format argument for the scan program."
  (if (equal mh-scan-format-file t)
      (list "-format" (if (mh-variant-p 'nmh 'gnu-mh)
                          (list (mh-update-scan-format
                                 mh-scan-format-nmh mh-cmd-note))
                        (list (mh-update-scan-format
                               mh-scan-format-mh mh-cmd-note))))
    (if (not (equal mh-scan-format-file nil))
        (list "-form" mh-scan-format-file))))