Function: nxml-set-face

nxml-set-face is a byte-compiled function defined in nxml-mode.el.gz.

Signature

(nxml-set-face START END FACE)

Source Code

;; Defined in /usr/src/emacs/lisp/nxml/nxml-mode.el.gz
(defsubst nxml-set-face (start end face)
  (when (and face (< start end))
    ;; Prepend, so the character reference highlighting takes precedence over
    ;; the string highlighting applied syntactically.
    (font-lock-prepend-text-property start end 'face face)))