Function: cider-repl-history-clear-highlighted-entry

cider-repl-history-clear-highlighted-entry is a byte-compiled function defined in cider-repl-history.el.

Signature

(cider-repl-history-clear-highlighted-entry)

Documentation

Clear the highlighted entry, when one exists.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl-history.el
(defun cider-repl-history-clear-highlighted-entry ()
  "Clear the highlighted entry, when one exists."
  (when cider-repl-history-previous-overlay
    (cl-assert (overlayp cider-repl-history-previous-overlay)
               nil "not an overlay")
    (overlay-put cider-repl-history-previous-overlay 'face nil)))