Function: helpful--kind-name
helpful--kind-name is a byte-compiled function defined in helpful.el.
Signature
(helpful--kind-name SYMBOL CALLABLE-P)
Documentation
Describe what kind of symbol this is.
Source Code
;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--kind-name (symbol callable-p)
"Describe what kind of symbol this is."
(cond
((not callable-p) "variable")
((commandp symbol) "command")
((macrop symbol) "macro")
((functionp symbol) "function")
((special-form-p symbol) "special form")))