Function: nrepl-decorate-msg

nrepl-decorate-msg is a byte-compiled function defined in nrepl-client.el.

Signature

(nrepl-decorate-msg MSG TYPE)

Documentation

Decorate nREPL MSG according to its TYPE.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/nrepl-client.el
(defun nrepl-decorate-msg (msg type)
  "Decorate nREPL MSG according to its TYPE."
  (pcase type
    (`request (cons '--> (cdr msg)))
    (`response (cons '<-- (cdr msg)))))