Function: hpath:is-path-variable-p
hpath:is-path-variable-p is a byte-compiled function defined in
hpath.el.
Signature
(hpath:is-path-variable-p PATH-VAR)
Documentation
Return a colon or semicolon-delimited set in PATH-VAR or nil if not a match.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hpath.el
(defun hpath:is-path-variable-p (path-var)
"Return a colon or semicolon-delimited set in PATH-VAR or nil if not a match."
(when (stringp path-var)
(or (getenv path-var)
(let ((sym (intern-soft path-var)))
(and sym (boundp sym) (stringp (symbol-value sym)) (symbol-value sym))))))