diff options
author | Kenichi Handa <handa@m17n.org> | 2000-11-29 00:38:36 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2000-11-29 00:38:36 +0000 |
commit | af9bd5396c78f6fc4865735247dae16b067acf92 (patch) | |
tree | 27c325f5d8f913f7229162dad570a169f883ff4b /lisp/xml.el | |
parent | 8f4b5f287aef5b6dba07544c788986c1fd6130a7 (diff) | |
download | emacs-af9bd5396c78f6fc4865735247dae16b067acf92.tar.gz |
(xml-parse-tag): Fix finding opening tag. A tag name
should not contain `\n'.
Diffstat (limited to 'lisp/xml.el')
-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) |