From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Maus Subject: [PATCH] Remove superfluous lambda. Date: Thu, 1 Jul 2010 20:02:18 +0200 Message-ID: <1278007338-13194-2-git-send-email-dmaus@ictsoc.de> References: <7D715DE2-56B5-4CA5-BA2C-39987077D9E0@gmail.com> Return-path: Received: from [140.186.70.92] (port=33986 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OUO69-0004sN-08 for emacs-orgmode@gnu.org; Thu, 01 Jul 2010 14:02:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OUO61-0000iq-At for emacs-orgmode@gnu.org; Thu, 01 Jul 2010 14:02:49 -0400 Received: from mysql1.xlhost.de ([213.202.242.106]:59136) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OUO61-0000ih-4V for emacs-orgmode@gnu.org; Thu, 01 Jul 2010 14:02:45 -0400 In-Reply-To: <7D715DE2-56B5-4CA5-BA2C-39987077D9E0@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-unescape): Remove superfluous lambda. --- lisp/org-feed.el | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/lisp/org-feed.el b/lisp/org-feed.el index 3edcf1a..cda7368 100644 --- a/lisp/org-feed.el +++ b/lisp/org-feed.el @@ -271,8 +271,7 @@ have been saved." (defun org-feed-unescape (s) "Unescape protected entities in S." (let ((re (concat "&\\(" - (mapconcat (lambda (e) - (car e)) xml-entity-alist "\\|") + (mapconcat 'car xml-entity-alist "\\|") "\\);"))) (while (string-match re s) (setq s (replace-match -- 1.7.1