Function: ansi-color-apply-text-property-face
ansi-color-apply-text-property-face is a byte-compiled function
defined in ansi-color.el.gz.
Signature
(ansi-color-apply-text-property-face BEG END FACE)
Documentation
Set the font-lock-face property to FACE in region BEG..END.
If FACE is nil, do nothing.
Source Code
;; Defined in /usr/src/emacs/lisp/ansi-color.el.gz
(defun ansi-color-apply-text-property-face (beg end face)
"Set the `font-lock-face' property to FACE in region BEG..END.
If FACE is nil, do nothing."
(when face
(put-text-property beg end 'font-lock-face face)))