Function: yank-handle-font-lock-face-property
yank-handle-font-lock-face-property is a byte-compiled function
defined in subr.el.gz.
Signature
(yank-handle-font-lock-face-property FACE START END)
Documentation
If font-lock-defaults is nil, apply FACE as a face property.
START and END denote the start and end of the text to act on. Do nothing if FACE is nil.
Source Code
;; Defined in /usr/src/emacs/lisp/subr.el.gz
(defun yank-handle-font-lock-face-property (face start end)
"If `font-lock-defaults' is nil, apply FACE as a `face' property.
START and END denote the start and end of the text to act on.
Do nothing if FACE is nil."
(and face
(null font-lock-defaults)
(put-text-property start end 'face face)))