Function: xml-skip-dtd

xml-skip-dtd is a byte-compiled function defined in xml.el.gz.

Signature

(xml-skip-dtd)

Documentation

Skip the DTD at point.

This follows the rule [28] in the XML specifications.

Source Code

;; Defined in /usr/src/emacs/lisp/xml.el.gz
;;; DTD (document type declaration)

;; The following functions know how to skip or parse the DTD of a
;; document.  FIXME: it fails at least if the DTD contains conditional
;; sections.

(defun xml-skip-dtd ()
  "Skip the DTD at point.
This follows the rule [28] in the XML specifications."
  (let ((xml-validating-parser nil))
    (xml-parse-dtd)))