From 3308155e23b4c9ecaaa599e0253b3eb25b64529f Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Tue, 22 Jun 2010 20:26:56 +0000 Subject: [PATCH] org-feed: Fix RSS feed parsing when as attributes I've RSS feeds with which does not work without that change. Signed-off-by: Julien Danjou --- lisp/org-feed.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-feed.el b/lisp/org-feed.el index 37b23271b..c86ca903d 100644 --- a/lisp/org-feed.el +++ b/lisp/org-feed.el @@ -583,7 +583,7 @@ containing the properties `:guid' and `:item-full-text'." (with-current-buffer buffer (widen) (goto-char (point-min)) - (while (re-search-forward "" nil t) + (while (re-search-forward ".*?>" nil t) (setq beg (point) end (and (re-search-forward "" nil t) (match-beginning 0)))