Function: pfuture--append-output-to-buffer

pfuture--append-output-to-buffer is a byte-compiled function defined in pfuture.el.

Signature

(pfuture--append-output-to-buffer PROCESS MSG)

Documentation

Append PROCESS' MSG to its output buffer.

Source Code

;; Defined in ~/.emacs.d/elpa/pfuture-20220913.1401/pfuture.el
(defun pfuture--append-output-to-buffer (process msg)
  "Append PROCESS' MSG to its output buffer."
  (with-current-buffer (process-get process 'buffer)
    (goto-char (point-max))
    (insert msg)))