Function: cider-repl--clear-region
cider-repl--clear-region is a byte-compiled function defined in
cider-repl.el.
Signature
(cider-repl--clear-region START END)
Documentation
Delete the output and its overlays between START and END.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-repl--clear-region (start end)
"Delete the output and its overlays between START and END."
(mapc #'delete-overlay (overlays-in start end))
(delete-region start end))