]> git.eshelyaron.com Git - emacs.git/commitdiff
(xml-parse-dtd): Fix misplaced paren.
authorAndreas Schwab <schwab@suse.de>
Fri, 7 Nov 2003 16:05:26 +0000 (16:05 +0000)
committerAndreas Schwab <schwab@suse.de>
Fri, 7 Nov 2003 16:05:26 +0000 (16:05 +0000)
lisp/xml.el

index 279fe48b16ba0233a6d71ee9e7c9a029ab687c04..a6159554b3f7641f8a7727f3bdb892cc7e7ca1f5 100644 (file)
@@ -546,7 +546,7 @@ This follows the rule [28] in the XML specifications."
            ;;  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 @@ This follows the rule [28] in the XML specifications."
 
          ;;  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."