diff options
author | John Paul Wallington <jpw@pobox.com> | 2004-10-06 06:04:41 +0000 |
---|---|---|
committer | John Paul Wallington <jpw@pobox.com> | 2004-10-06 06:04:41 +0000 |
commit | 07f7e9aede707c188ec0e88ac3fade20bc3b4725 (patch) | |
tree | e0e3a9e1318ba832fa46e2949ae81ee163eddddc /lisp/xml.el | |
parent | a13bc06478c95cec007fb8ec18b1ebb929f2a78b (diff) | |
download | emacs-07f7e9aede707c188ec0e88ac3fade20bc3b4725.tar.gz |
(xml-parse-dtd): Fix `error' call.
Diffstat (limited to 'lisp/xml.el')
-rw-r--r-- | lisp/xml.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/xml.el b/lisp/xml.el index dd6d5095bc2..f1d8cbb1f00 100644 --- a/lisp/xml.el +++ b/lisp/xml.el @@ -598,8 +598,8 @@ This follows the rule [28] in the XML specifications." nil) (t (if xml-validating-parser - error "XML: (Validity) Invalid element type in the DTD"))) - + (error "XML: (Validity) Invalid element type in the DTD")))) + ;; rule [45]: the element declaration must be unique (if (and (assoc element dtd) xml-validating-parser) |