Function: pfuture-stderr--inliner

pfuture-stderr--inliner is a function defined in pfuture.el.

Signature

(pfuture-stderr--inliner INLINE--FORM PROCESS)

Source Code

;; Defined in ~/.emacs.d/elpa/pfuture-20220913.1401/pfuture.el
;; Closure converted to defun by helpful.
(defun pfuture-stderr--inliner
    (inline--form process)
  (ignore inline--form)
  (catch 'inline--just-use
    (let*
	((exp process)
	 (process
	  (if
	      (macroexp-copyable-p exp)
	      exp
	    (make-symbol "process")))
	 (body
	  (list 'process-get process
		(list 'quote 'stderr))))
      (if
	  (eq process exp)
	  body
	(macroexp-let*
	 (list
	  (list process exp))
	 body)))))