diff options
author | Daiki Ueno <ueno@unixuser.org> | 2011-08-28 22:04:32 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2011-08-28 22:04:32 +0000 |
commit | 0f3de88f02fd5107b34dd653668099a7d8b3e7bb (patch) | |
tree | bae095c8081ef064e6a3358680a3faac9fc93a01 /lisp/gnus/mml2015.el | |
parent | fb87e0fb94a5ec2018c677a91c62eebea5a978eb (diff) | |
download | emacs-0f3de88f02fd5107b34dd653668099a7d8b3e7bb.tar.gz |
Merge changes made in Gnus trunk.
mml-smime.el (mml-smime-epg-verify): Don't use the 4th arg of mm-replace-in-string for compatibility issues.
mml2015.el (mml2015-epg-verify): Ditto.
Diffstat (limited to 'lisp/gnus/mml2015.el')
-rw-r--r-- | lisp/gnus/mml2015.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/mml2015.el b/lisp/gnus/mml2015.el index 7d8a4119c0e..b9310beed58 100644 --- a/lisp/gnus/mml2015.el +++ b/lisp/gnus/mml2015.el @@ -923,7 +923,7 @@ If set, it overrides the setting of `mml2015-sign-with-sender'." (mm-set-handle-multipart-parameter mm-security-handle 'gnus-info "Corrupted") (throw 'error handle)) - (setq part (mm-replace-in-string part "\n" "\r\n" t) + (setq part (mm-replace-in-string part "\n" "\r\n") signature (mm-get-part signature) context (epg-make-context)) (condition-case error |