Function: helpful--variable-p
helpful--variable-p is a byte-compiled function defined in helpful.el.
Signature
(helpful--variable-p SYMBOL)
Documentation
Return non-nil if SYMBOL is a variable.
Source Code
;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--variable-p (symbol)
"Return non-nil if SYMBOL is a variable."
(or (get symbol 'variable-documentation)
(and (boundp symbol)
(not (keywordp symbol))
(not (eq symbol nil))
(not (eq symbol t)))))