Function: mh-exec-lib-cmd-output
mh-exec-lib-cmd-output is a byte-compiled function defined in
mh-e.el.gz.
Signature
(mh-exec-lib-cmd-output COMMAND &rest ARGS)
Documentation
Execute MH library command COMMAND with ARGS.
Put the output into buffer after point. Set mark after inserted text.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defun mh-exec-lib-cmd-output (command &rest args)
"Execute MH library command COMMAND with ARGS.
Put the output into buffer after point.
Set mark after inserted text."
(apply #'mh-exec-cmd-output (expand-file-name command mh-lib-progs) nil args))