diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-05-23 14:57:17 -0300 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-05-23 14:57:17 -0300 |
commit | 6d2a36bee127dc4d3fe591dadf8fc30e6b4502f9 (patch) | |
tree | b0610e699a184dcfda0872fcff09bcc62ba7a1f0 /lisp/mh-e/mh-mime.el | |
parent | 6ba601d359817b2ab647fe8e44260392cfdfd203 (diff) | |
download | emacs-6d2a36bee127dc4d3fe591dadf8fc30e6b4502f9.tar.gz |
Don't quote lambda expressions with `quote'.
Diffstat (limited to 'lisp/mh-e/mh-mime.el')
-rw-r--r-- | lisp/mh-e/mh-mime.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mh-e/mh-mime.el b/lisp/mh-e/mh-mime.el index ba994e73a91..48c6a3793ef 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)) |