Function: nxml-fontify-prolog

nxml-fontify-prolog is a byte-compiled function defined in nxml-mode.el.gz.

Signature

(nxml-fontify-prolog)

Documentation

Fontify the prolog.

The buffer is assumed to be prepared for fontification. This does not set the fontified property, but it does clear faces appropriately.

Source Code

;; Defined in /usr/src/emacs/lisp/nxml/nxml-mode.el.gz
(defun nxml-fontify-prolog ()
  "Fontify the prolog.
The buffer is assumed to be prepared for fontification.
This does not set the fontified property, but it does clear
faces appropriately."
  (let ((regions nxml-prolog-regions))
    (while regions
      (let ((region (car regions)))
	(nxml-apply-fontify-rule (aref region 0)
				 (aref region 1)
				 (aref region 2)))
      (setq regions (cdr regions)))))