]> git.eshelyaron.com Git - emacs.git/commitdiff
(xml-parse-dtd): Fix `error' call.
authorJohn Paul Wallington <jpw@pobox.com>
Wed, 6 Oct 2004 06:04:41 +0000 (06:04 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Wed, 6 Oct 2004 06:04:41 +0000 (06:04 +0000)
lisp/ChangeLog
lisp/xml.el

index b80238592040add8cfae460d7c7276d3a96259cd..b5cfa0640e9a1dac87d107192262227dc1314494 100644 (file)
@@ -1,3 +1,7 @@
+2004-10-06  John Paul Wallington  <jpw@gnu.org>
+
+       * xml.el (xml-parse-dtd): Fix `error' call.
+
 2004-10-05  Mark A. Hershberger  <mah@everybody.org>
 
        * xml.el (xml-substitute-special): Return a single string instead
@@ -17,7 +21,6 @@
        (Info-build-toc): Don't check for special Info file names.
        Set main-file to nil if Info-find-file returns a symbol.
 
->>>>>>> 1.6421
 2004-10-05  Emilio C. Lopes  <eclig@gmx.net>:
 
        * calendar/calendar.el (calendar-goto-iso-week): Add autoload.
index dd6d5095bc21876fd4e30e8f066ce43c2faffef9..f1d8cbb1f002658425725f97978d279fb6cd1541 100644 (file)
@@ -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)