Function: cider-maybe-intern

cider-maybe-intern is a byte-compiled function defined in cider-util.el.

Signature

(cider-maybe-intern NAME)

Documentation

If NAME is a symbol, return it; otherwise, intern it.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-util.el
;;; Text properties

(defun cider-maybe-intern (name)
  "If NAME is a symbol, return it; otherwise, intern it."
  (if (symbolp name) name (intern name)))