Function: nrepl--process-plist-put
nrepl--process-plist-put is a byte-compiled function defined in
nrepl-client.el.
Signature
(nrepl--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-20260822.1520/nrepl-client.el
(defun nrepl--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))))