From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: [PATCH] Remove superfluous lambda. Date: Fri, 2 Jul 2010 06:40:07 +0200 Message-ID: <897237E2-23A2-4551-80B6-B4B957FAE4FC@gmail.com> References: <7D715DE2-56B5-4CA5-BA2C-39987077D9E0@gmail.com> <1278007338-13194-2-git-send-email-dmaus@ictsoc.de> Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=60597 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OUY2v-0007bS-5J for emacs-orgmode@gnu.org; Fri, 02 Jul 2010 00:40:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OUY2t-0006xe-VH for emacs-orgmode@gnu.org; Fri, 02 Jul 2010 00:40:13 -0400 Received: from mail-ew0-f41.google.com ([209.85.215.41]:51714) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OUY2t-0006xV-P7 for emacs-orgmode@gnu.org; Fri, 02 Jul 2010 00:40:11 -0400 Received: by ewy28 with SMTP id 28so1143571ewy.0 for ; Thu, 01 Jul 2010 21:40:11 -0700 (PDT) In-Reply-To: <1278007338-13194-2-git-send-email-dmaus@ictsoc.de> 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: David Maus , John Wiegley Cc: emacs-orgmode Mode Hmm, the catcher did not see this. Why? - Carsten On Jul 1, 2010, at 8:02 PM, David Maus wrote: > * 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 > > > _______________________________________________ > Emacs-orgmode mailing list > Please use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode - Carsten