aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Paul Wallington2004-10-06 06:04:41 +0000
committerJohn Paul Wallington2004-10-06 06:04:41 +0000
commit07f7e9aede707c188ec0e88ac3fade20bc3b4725 (patch)
treee0e3a9e1318ba832fa46e2949ae81ee163eddddc
parenta13bc06478c95cec007fb8ec18b1ebb929f2a78b (diff)
downloademacs-07f7e9aede707c188ec0e88ac3fade20bc3b4725.tar.gz
emacs-07f7e9aede707c188ec0e88ac3fade20bc3b4725.zip
(xml-parse-dtd): Fix `error' call.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/xml.el4
2 files changed, 6 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b8023859204..b5cfa0640e9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12004-10-06 John Paul Wallington <jpw@gnu.org>
2
3 * xml.el (xml-parse-dtd): Fix `error' call.
4
12004-10-05 Mark A. Hershberger <mah@everybody.org> 52004-10-05 Mark A. Hershberger <mah@everybody.org>
2 6
3 * xml.el (xml-substitute-special): Return a single string instead 7 * xml.el (xml-substitute-special): Return a single string instead
@@ -17,7 +21,6 @@
17 (Info-build-toc): Don't check for special Info file names. 21 (Info-build-toc): Don't check for special Info file names.
18 Set main-file to nil if Info-find-file returns a symbol. 22 Set main-file to nil if Info-find-file returns a symbol.
19 23
20>>>>>>> 1.6421
212004-10-05 Emilio C. Lopes <eclig@gmx.net>: 242004-10-05 Emilio C. Lopes <eclig@gmx.net>:
22 25
23 * calendar/calendar.el (calendar-goto-iso-week): Add autoload. 26 * calendar/calendar.el (calendar-goto-iso-week): Add autoload.
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."
598 nil) 598 nil)
599 (t 599 (t
600 (if xml-validating-parser 600 (if xml-validating-parser
601 error "XML: (Validity) Invalid element type in the DTD"))) 601 (error "XML: (Validity) Invalid element type in the DTD"))))
602 602
603 ;; rule [45]: the element declaration must be unique 603 ;; rule [45]: the element declaration must be unique
604 (if (and (assoc element dtd) 604 (if (and (assoc element dtd)
605 xml-validating-parser) 605 xml-validating-parser)