Function: transient--add-face

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

Signature

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

Source Code

;; Defined in /usr/src/emacs/lisp/transient.el.gz
(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))