Function: rng-goto-error-overlay

rng-goto-error-overlay is a byte-compiled function defined in rng-valid.el.gz.

Signature

(rng-goto-error-overlay ERR)

Documentation

Goto the start of error overlay ERR and print its message.

Source Code

;; Defined in /usr/src/emacs/lisp/nxml/rng-valid.el.gz
(defun rng-goto-error-overlay (err)
  "Goto the start of error overlay ERR and print its message."
  (goto-char (overlay-start err))
  (setq rng-message-overlay-inhibit-point nil)
  (rng-error-overlay-message err))