Function: mh-process-daemon

mh-process-daemon is a byte-compiled function defined in mh-e.el.gz.

Signature

(mh-process-daemon PROCESS OUTPUT)

Documentation

PROCESS daemon that puts OUTPUT into a temporary buffer.

Any output from the process is displayed in an asynchronous pop-up window.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defun mh-process-daemon (_process output)
  "PROCESS daemon that puts OUTPUT into a temporary buffer.
Any output from the process is displayed in an asynchronous
pop-up window."
  (with-current-buffer (get-buffer-create mh-log-buffer)
    (insert-before-markers output)
    (display-buffer mh-log-buffer)))