From 6a9cb3ba1fd714f4a0f60ad0050a9d81518e8168 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 16 Dec 2002 17:04:58 +0000 Subject: (xml-parse-tag): Allow spaces between / and >. --- lisp/xml.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/xml.el') diff --git a/lisp/xml.el b/lisp/xml.el index a495721330..cd99250253 100644 --- a/lisp/xml.el +++ b/lisp/xml.el @@ -219,7 +219,7 @@ Returns one of: pos) ;; is this an empty element ? - (if (looking-at "/>") + (if (looking-at "/[ \t\n]*>") (progn (forward-char 2) (nreverse (cons '("") children))) -- cgit v1.2.3