0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 23:57:47 +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) (defun org-feed-unescape (s)
"Unescape protected entities in S." "Unescape protected entities in S."
(let ((re (concat "&\\(" (let ((re (concat "&\\("
(mapconcat (lambda (e) (mapconcat 'car xml-entity-alist "\\|")
(car e)) xml-entity-alist "\\|")
"\\);"))) "\\);")))
(while (string-match re s) (while (string-match re s)
(setq s (replace-match (setq s (replace-match