* 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

Reply via email to