0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 22:07:49 +00:00

Remove superfluous lambda.

* org-feed.el (org-feed-unescape): Remove superfluous lambda.
This commit is contained in:
David Maus 2010-07-01 23:02:18 +00:00 committed by John Wiegley
parent 42f239cb0e
commit dc9222e066

View file

@ -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