Function: mh-profile-component

mh-profile-component is a byte-compiled function defined in mh-e.el.gz.

Signature

(mh-profile-component COMPONENT)

Documentation

Return COMPONENT value from mhparam, or nil if unset.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defun mh-profile-component (component)
  "Return COMPONENT value from mhparam, or nil if unset."
  (save-excursion
    ;; MH and nmh use -components, GNU mailutils MH uses -component.
    ;; Since MH and nmh work with an unambiguous prefix, the `s' is
    ;; dropped here.
    (mh-exec-cmd-quiet nil "mhparam" "-component" component)
    (mh-profile-component-value component)))