Function: rng-what-schema

rng-what-schema is an interactive and byte-compiled function defined in rng-loc.el.gz.

Signature

(rng-what-schema)

Documentation

Display a message saying what schema rng-validate-mode(var)/rng-validate-mode(fun) is using.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/nxml/rng-loc.el.gz
(defun rng-what-schema ()
  "Display a message saying what schema `rng-validate-mode' is using."
  (interactive)
  (if rng-current-schema-file-name
      (message "Using schema %s"
	       (abbreviate-file-name rng-current-schema-file-name))
    (message "Using vacuous schema")))