Function: shell-apply-ansi-color
shell-apply-ansi-color is a byte-compiled function defined in
shell.el.gz.
Signature
(shell-apply-ansi-color BEG END FACE)
Documentation
Apply FACE as the ansi-color face for the text between BEG and END.
Source Code
;; Defined in /usr/src/emacs/lisp/shell.el.gz
(defun shell-apply-ansi-color (beg end face)
"Apply FACE as the ansi-color face for the text between BEG and END."
(when face
(put-text-property beg end 'ansi-color-face face)
(put-text-property beg end 'font-lock-face face)))