Don't quote lambda expressions with `quote'.

This commit is contained in:
Stefan Monnier 2011-05-23 14:57:17 -03:00
parent 782fc81943
commit 4f91a8160f
77 changed files with 466 additions and 493 deletions

View file

@ -864,9 +864,9 @@ the user from the mailer."
(let ((l))
(mapc
;; remove duplicates
'(lambda (e)
(unless (member e l)
(push e l)))
(lambda (e)
(unless (member e l)
(push e l)))
(split-string new-header-values
",[[:space:]]+" t))
(mapconcat 'identity l ", "))