# HG changeset patch # User Andreas Schwab # Date 1068221126 0 # Node ID 45bd3ad34572b1cbd77edc55223d11a5c70d1464 # Parent 9a2bdd639c25719360438f4b1679f11f1fe95042 (xml-parse-dtd): Fix misplaced paren. diff -r 9a2bdd639c25 -r 45bd3ad34572 lisp/xml.el --- 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."