Mercurial > emacs
changeset 108264:e556879757eb
Synch with Gnus trunk.
(mml-secure-message-sign): Fix cut and paste error.
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Thu, 06 May 2010 06:05:48 +0000 |
parents | 9ca2a7762d32 (current diff) b1e54ed5a91e (diff) |
children | 39e86d46390a 3ecfdde2a36c |
files | |
diffstat | 2 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/gnus/ChangeLog Wed May 05 22:50:26 2010 -0700 +++ b/lisp/gnus/ChangeLog Thu May 06 06:05:48 2010 +0000 @@ -1,3 +1,7 @@ +2010-05-06 Tommi Vainikainen <thv@iki.fi> (tiny change) + + * mml-sec.el (mml-secure-message-sign): Fix cut and paste error. + 2010-05-06 Katsumi Yamaoka <yamaoka@jpl.org> * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
--- a/lisp/gnus/mml-sec.el Wed May 05 22:50:26 2010 -0700 +++ b/lisp/gnus/mml-sec.el Thu May 06 06:05:48 2010 +0000 @@ -308,11 +308,11 @@ (defun mml-secure-message-sign (&optional method) - "Add MML tags to sign this MML part. + "Add MML tags to sign the entire message. Use METHOD if given. Else use `mml-secure-method' or `mml-default-sign-method'." (interactive) - (mml-secure-part + (mml-secure-message (or method mml-secure-method mml-default-sign-method) 'sign))