Function: sesman-relevant-session-p

sesman-relevant-session-p is a byte-compiled function defined in sesman.el.

Signature

(sesman-relevant-session-p SYSTEM SESSION &optional CXT-TYPES)

Documentation

Return non-nil if SYSTEM's SESSION is relevant to the current context.

If CXT-TYPES is non-nil, only check relevance for those contexts.

Source Code

;; Defined in ~/.emacs.d/elpa/sesman-20240417.1723/sesman.el
(defun sesman-relevant-session-p (system session &optional cxt-types)
  "Return non-nil if SYSTEM's SESSION is relevant to the current context.
If CXT-TYPES is non-nil, only check relevance for those contexts."
  (seq-some #'sesman-relevant-link-p
            (sesman-links system session cxt-types)))