From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Maus Subject: [PATCH 1/4] Respect possible XML namespace of rss:item elements. Date: Sat, 19 Jun 2010 16:25:38 +0200 Message-ID: <1276957541-29908-2-git-send-email-dmaus@ictsoc.de> References: <87wrtvdzv2.fsf@gmail.com> Return-path: Received: from [140.186.70.92] (port=49721 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OPz12-0005HE-Mo for emacs-orgmode@gnu.org; Sat, 19 Jun 2010 10:27:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OPz11-0003Q8-Iw for emacs-orgmode@gnu.org; Sat, 19 Jun 2010 10:27:24 -0400 Received: from mysql1.xlhost.de ([213.202.242.106]:58383) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OPz11-0003Q1-CV for emacs-orgmode@gnu.org; Sat, 19 Jun 2010 10:27:23 -0400 In-Reply-To: <87wrtvdzv2.fsf@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org * org-feed.el (org-feed-parse-rss-feed): Respect possible XML namespace of rss:item elements. --- lisp/org-feed.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lisp/org-feed.el b/lisp/org-feed.el index 37b2327..c86ca90 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))) -- 1.7.1