Function: cider--process-plist-put

cider--process-plist-put is a byte-compiled function defined in nrepl-client.el.

Signature

(cider--process-plist-put PROC PROP VAL)

Documentation

Change value in PROC's plist of PROP to VAL.

Value is changed using `plist-put`, of which see.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/nrepl-client.el
(defun cider--process-plist-put (proc prop val)
  "Change value in PROC's plist of PROP to VAL.
Value is changed using `plist-put`, of which see."
  (thread-first
    proc
    (process-plist)
    (plist-put prop val)
    (thread-last (set-process-plist proc))))