diff options
author | Glenn Morris <rgm@gnu.org> | 2012-05-26 18:06:44 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-05-26 18:06:44 -0700 |
commit | 33017fafd17d722e82a268e9b272f27df261e09d (patch) | |
tree | 9c34640f09d51059804961d697ed9b07e19571d3 /lisp/mail/sendmail.el | |
parent | caf8a9b2b301aba06735d403317b75b41df59bfe (diff) | |
parent | ed7bebbb489cf6f893fc35a2a6714b0d8e7e8a90 (diff) | |
download | emacs-33017fafd17d722e82a268e9b272f27df261e09d.tar.gz emacs-33017fafd17d722e82a268e9b272f27df261e09d.tar.bz2 emacs-33017fafd17d722e82a268e9b272f27df261e09d.zip |
Merge from emacs-24; up to 2012-04-24T08:35:02Z!lekktu@gmail.com
Diffstat (limited to 'lisp/mail/sendmail.el')
-rw-r--r-- | lisp/mail/sendmail.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index cd3862985bd..3b262e3fb53 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -1678,7 +1678,8 @@ Just \\[universal-argument] as argument means don't indent, insert no prefix, and don't delete any header fields." (interactive "P") (and (consp mail-reply-action) - (eq (car mail-reply-action) 'insert-buffer) + (memq (car mail-reply-action) + '(rmail-yank-current-message insert-buffer)) (with-current-buffer (nth 1 mail-reply-action) (or (mark t) (error "No mark set: %S" (current-buffer)))) |