summaryrefslogtreecommitdiff
path: root/lisp/xml.el
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2003-11-07 16:05:26 +0000
committerAndreas Schwab <schwab@suse.de>2003-11-07 16:05:26 +0000
commit1b27c2080c83bb4f4b5fec1b525fee06aae3b9a2 (patch)
tree5aafadcdaedfece39d18541e2dda377026c05a5f /lisp/xml.el
parenta98ac02cd7aeb2fb02a414ded4a5c03c51c32485 (diff)
downloademacs-1b27c2080c83bb4f4b5fec1b525fee06aae3b9a2.tar.gz
(xml-parse-dtd): Fix misplaced paren.
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 279fe48b16b..a6159554b3f 100644
--- a/lisp/xml.el
+++ b/lisp/xml.el
@@ -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."