Function: cider-intern-keys
cider-intern-keys is a byte-compiled function defined in
cider-util.el.
Signature
(cider-intern-keys PLIST)
Documentation
Copy PLIST, with any non-symbol keys replaced with symbols.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-util.el
(defun cider-intern-keys (plist)
"Copy PLIST, with any non-symbol keys replaced with symbols."
(when plist
(cons (cider-maybe-intern (pop plist))
(cons (pop plist) (cider-intern-keys plist)))))