Function: cider-emit-interactive-eval-err-output

cider-emit-interactive-eval-err-output is a byte-compiled function defined in cider-eval.el.

Signature

(cider-emit-interactive-eval-err-output OUTPUT)

Documentation

Emit err OUTPUT resulting from interactive code evaluation.

The output can be send to either a dedicated output buffer or the current REPL buffer. This is controlled via cider-interactive-eval-output-destination.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-eval.el
(defun cider-emit-interactive-eval-err-output (output)
  "Emit err OUTPUT resulting from interactive code evaluation.
The output can be send to either a dedicated output buffer or the current
REPL buffer.  This is controlled via
`cider-interactive-eval-output-destination'."
  (cider--emit-interactive-eval-output output 'cider-repl-emit-interactive-stderr))