emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Orgmode] [PATCH] Remove superfluous lambda.


From: Carsten Dominik
Subject: Re: [Orgmode] [PATCH] Remove superfluous lambda.
Date: Fri, 2 Jul 2010 06:40:07 +0200

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.
address@hidden
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

- Carsten






reply via email to

[Prev in Thread] Current Thread [Next in Thread]