Function: cider-stacktrace-suppress-error

cider-stacktrace-suppress-error is a byte-compiled function defined in cider-stacktrace.el.

Signature

(cider-stacktrace-suppress-error ERROR-TYPE)

Documentation

Destructively add ERROR-TYPE to the cider-stacktrace-suppressed-errors set.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-stacktrace.el
(defun cider-stacktrace-suppress-error (error-type)
  "Destructively add ERROR-TYPE to the `cider-stacktrace-suppressed-errors' set."
  (setq cider-stacktrace-suppressed-errors
        (if (member error-type cider-stacktrace-suppressed-errors)
            cider-stacktrace-suppressed-errors
          (cons error-type cider-stacktrace-suppressed-errors))))