Function: rng-auto-set-schema-and-validate

rng-auto-set-schema-and-validate is an interactive and byte-compiled function defined in rng-valid.el.gz.

Signature

(rng-auto-set-schema-and-validate)

Documentation

Set the schema for this buffer automatically and turn on rng-validate-mode(var)/rng-validate-mode(fun).

The schema is set like rng-auto-set-schema.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/nxml/rng-valid.el.gz
(defun rng-auto-set-schema-and-validate ()
  "Set the schema for this buffer automatically and turn on `rng-validate-mode'.
The schema is set like `rng-auto-set-schema'."
  (interactive)
  (rng-auto-set-schema)
  (or rng-validate-mode (rng-validate-mode)))