Function: cider-repl--history-doctor-buffer
cider-repl--history-doctor-buffer is a byte-compiled function defined
in cider-repl.el.
Signature
(cider-repl--history-doctor-buffer)
Documentation
Get-or-create the doctor inspection buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-repl.el
(defun cider-repl--history-doctor-buffer ()
"Get-or-create the doctor inspection buffer."
(let ((buf (get-buffer-create "*cider-repl-history-doctor*")))
(with-current-buffer buf
(delay-mode-hooks (clojure-mode))
(setq buffer-read-only t))
buf))