diff options
-rw-r--r-- | lisp/xml.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/xml.el b/lisp/xml.el index 4a738107410..a7d2ba48ef5 100644 --- a/lisp/xml.el +++ b/lisp/xml.el @@ -203,7 +203,7 @@ Returns one of: ((looking-at "</") '()) ;; opening tag - ((looking-at "<\\([^/> \t]+\\)") + ((looking-at "<\\([^/> \t\n]+\\)") (let* ((node-name (match-string 1)) (children (list (intern node-name))) pos) |