Function: transient-parse-suffix
transient-parse-suffix is a byte-compiled function defined in
transient.el.
Signature
(transient-parse-suffix PREFIX SUFFIX)
Documentation
Parse SUFFIX, to be added to PREFIX.
PREFIX is a prefix command symbol or object.
SUFFIX is a suffix command or a group specification (of
the same forms as expected by transient-define-prefix).
Intended for use in a group's :setup-children function.
Source Code
;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
(defun transient-parse-suffix (prefix suffix)
"Parse SUFFIX, to be added to PREFIX.
PREFIX is a prefix command symbol or object.
SUFFIX is a suffix command or a group specification (of
the same forms as expected by `transient-define-prefix').
Intended for use in a group's `:setup-children' function."
(when (cl-typep prefix 'transient-prefix)
(setq prefix (oref prefix command)))
(eval (car (transient--parse-child prefix suffix)) t))