Function: nxml-syntax-propertize

nxml-syntax-propertize is a byte-compiled function defined in nxml-mode.el.gz.

Signature

(nxml-syntax-propertize START END)

Documentation

Syntactic keywords for nxml-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/nxml/nxml-mode.el.gz
(defvar nxml-prolog-end) ;; nxml-rap.el

(defun nxml-syntax-propertize (start end)
  "Syntactic keywords for `nxml-mode'."
  ;; Like `sgml-syntax-propertize', but rescan prolog if needed.
  (when (< start nxml-prolog-end)
    (nxml-scan-prolog))
  (sgml-syntax-propertize start end))