Function: cider-plist-put

cider-plist-put is a byte-compiled function defined in cider-util.el.

Signature

(cider-plist-put PLIST PROP VAL)

Documentation

Change value in PLIST of PROP to VAL, comparing with equal.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-util.el
(defun cider-plist-put (plist prop val)
  "Change value in PLIST of PROP to VAL, comparing with `equal'."
  (compat-call plist-put plist prop val #'equal))