Function: cider-stdin-handler
cider-stdin-handler is a byte-compiled function defined in
cider-client.el.
Signature
(cider-stdin-handler &optional BUFFER)
Documentation
Make a stdin response handler for _BUFFER.
Intentionally swallows value/out/err so the response is consumed without side effects; only the global handlers fire (need-input, eval-error, ...).
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-client.el
;;; Dealing with input
(defun cider-stdin-handler (&optional _buffer)
"Make a stdin response handler for _BUFFER.
Intentionally swallows value/out/err so the response is consumed without
side effects; only the global handlers fire (need-input, eval-error, ...)."
(cider-make-eval-handler :buffer (current-buffer)))