aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/mh-e/mh-mime.el
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2011-05-23 14:57:17 -0300
committerStefan Monnier <[email protected]>2011-05-23 14:57:17 -0300
commit4f91a8160fe71295b7ad4d6e3f90f004caa3546c (patch)
treec0f3f767b785559ee0387e7cfb54a2a1aa06bcd5 /lisp/mh-e/mh-mime.el
parent782fc81943849d699d74c3039be80d4068bb3422 (diff)
Don't quote lambda expressions with `quote'.
Diffstat (limited to 'lisp/mh-e/mh-mime.el')
-rw-r--r--lisp/mh-e/mh-mime.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mh-e/mh-mime.el b/lisp/mh-e/mh-mime.el
index ba994e73a9..48c6a3793e 100644
--- a/lisp/mh-e/mh-mime.el
+++ b/lisp/mh-e/mh-mime.el
@@ -1637,8 +1637,8 @@ This action can be undone by running \\[undo]."
;; Do an alias lookup on recipients
(message-options-set 'message-recipients
(mapconcat
- '(lambda (ali)
- (mail-strip-quoted-names (mh-alias-expand ali)))
+ (lambda (ali)
+ (mail-strip-quoted-names (mh-alias-expand ali)))
(split-string (message-options-get 'message-recipients) "[, ]+")
", ")))
(let ((saved-text (buffer-string))