Function: hydra--quote-maybe
hydra--quote-maybe is a byte-compiled function defined in hydra.el.
Signature
(hydra--quote-maybe X)
Documentation
Quote X if it's a symbol.
Source Code
;; Defined in ~/.emacs.d/elpa/hydra-20250316.1254/hydra.el
(defun hydra--quote-maybe (x)
"Quote X if it's a symbol."
(cond ((null x)
nil)
((symbolp x)
(list 'quote x))
(t
x)))