Function: xref--insert-propertized
xref--insert-propertized is a byte-compiled function defined in
xref.el.gz.
Signature
(xref--insert-propertized PROPS &rest STRINGS)
Documentation
Insert STRINGS with text properties PROPS.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/xref.el.gz
(defun xref--insert-propertized (props &rest strings)
"Insert STRINGS with text properties PROPS."
(let ((start (point)))
(apply #'insert strings)
(add-text-properties start (point) props)))