changeset 53011:45bd3ad34572

(xml-parse-dtd): Fix misplaced paren.
author Andreas Schwab <schwab@suse.de>
date Fri, 07 Nov 2003 16:05:26 +0000
parents 9a2bdd639c25
children 9c7f73f2f80f
files lisp/xml.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/xml.el	Fri Nov 07 07:26:27 2003 +0000
+++ b/lisp/xml.el	Fri Nov 07 16:05:26 2003 +0000
@@ -546,7 +546,7 @@
 	    ;;  rule [45]: the element declaration must be unique
 	    (if (assoc element dtd)
 		(error "XML: element declarations must be unique in a DTD (<%s>)"
-		       element)
+		       element))
 
 	    ;;  Store the element in the DTD
 	    (push (list element type) dtd)
@@ -559,7 +559,7 @@
 
 	  ;;  Skip the end of the DTD
 	  (search-forward ">"))))
-    (nreverse dtd))))
+    (nreverse dtd)))
 
 (defun xml-parse-elem-type (string)
   "Convert element type STRING into a Lisp structure."