Function: transient--add-face

transient--add-face is a byte-compiled function defined in transient.el.

Signature

(transient--add-face STRING FACE &optional APPEND BEG END)

Source Code

;; Defined in ~/.emacs.d/elpa/transient-20260414.1009/transient.el
(defun transient--add-face (string face &optional append beg end)
  (let ((str (copy-sequence string)))
    (add-face-text-property (or beg 0) (or end (length str)) face append str)
    str))