Function: cider-stacktrace-promote-error
cider-stacktrace-promote-error is a byte-compiled function defined in
cider-stacktrace.el.
Signature
(cider-stacktrace-promote-error ERROR-TYPE)
Documentation
Destructively remove ERROR-TYPE from cider-stacktrace-suppressed-errors.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-stacktrace.el
(defun cider-stacktrace-promote-error (error-type)
"Destructively remove ERROR-TYPE from `cider-stacktrace-suppressed-errors'."
(setq cider-stacktrace-suppressed-errors
(remove error-type cider-stacktrace-suppressed-errors)))