summaryrefslogtreecommitdiff
path: root/lisp/xml.el
diff options
context:
space:
mode:
authorJohn Paul Wallington <jpw@pobox.com>2004-10-06 06:03:54 +0000
committerJohn Paul Wallington <jpw@pobox.com>2004-10-06 06:03:54 +0000
commitf9d665a379014e2e5d06618ca829636a7ff60d19 (patch)
tree64d8f869f40dd4a8e0ad25e02cbf87d0da903312 /lisp/xml.el
parent54873fe646597e0cb83dbd7275d944bd0df00f89 (diff)
downloademacs-f9d665a379014e2e5d06618ca829636a7ff60d19.tar.gz
(xml-parse-dtd): Fix `error' call.
Diffstat (limited to 'lisp/xml.el')
-rw-r--r--lisp/xml.el4
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)