aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/xml.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/xml.el')
-rw-r--r--lisp/xml.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/xml.el b/lisp/xml.el
index cd801be3083..be2ac96f264 100644
--- a/lisp/xml.el
+++ b/lisp/xml.el
@@ -646,8 +646,10 @@ surpassed `xml-entity-expansion-limit'"))))
646(defun xml-parse-attlist (&optional xml-ns) 646(defun xml-parse-attlist (&optional xml-ns)
647 "Return the attribute-list after point. 647 "Return the attribute-list after point.
648Leave point at the first non-blank character after the tag." 648Leave point at the first non-blank character after the tag."
649 (let ((attlist ()) 649 (let* ((attlist ())
650 end-pos name) 650 (symbol-qnames (eq (car-safe xml-ns) 'symbol-qnames))
651 (xml-ns (if symbol-qnames (cdr xml-ns) xml-ns))
652 end-pos name)
651 (skip-syntax-forward " ") 653 (skip-syntax-forward " ")
652 (while (looking-at (eval-when-compile 654 (while (looking-at (eval-when-compile
653 (concat "\\(" xml-name-re "\\)\\s-*=\\s-*"))) 655 (concat "\\(" xml-name-re "\\)\\s-*=\\s-*")))