Function: sesman-session-name-for-object
sesman-session-name-for-object is a byte-compiled function defined in
sesman.el.
Signature
(sesman-session-name-for-object SYSTEM OBJECT &optional NO-ERROR)
Documentation
Retrieve the name of the SYSTEM's session containing OBJECT.
When NO-ERROR is non-nil, don't throw an error if OBJCECT is not part of any session. In such case, return nil.
Source Code
;; Defined in ~/.emacs.d/elpa/sesman-20240417.1723/sesman.el
(defun sesman-session-name-for-object (system object &optional no-error)
"Retrieve the name of the SYSTEM's session containing OBJECT.
When NO-ERROR is non-nil, don't throw an error if OBJCECT is not part of
any session. In such case, return nil."
(car (sesman-session-for-object system object no-error)))