Function: transient-parse-suffixes
transient-parse-suffixes is a byte-compiled function defined in
transient.el.
Signature
(transient-parse-suffixes PREFIX SUFFIXES)
Documentation
Parse SUFFIXES, to be added to PREFIX.
PREFIX is a prefix command symbol or object.
SUFFIXES is a list of 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-suffixes (prefix suffixes)
"Parse SUFFIXES, to be added to PREFIX.
PREFIX is a prefix command symbol or object.
SUFFIXES is a list of 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)))
(mapcar (apply-partially #'transient-parse-suffix prefix) suffixes))