diff options
author | Katsumi Yamaoka <yamaoka@jpl.org> | 2010-05-06 05:54:57 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2010-05-06 05:54:57 +0000 |
commit | 16b90cfe1999f083b6d78a30afffec39ea207fdf (patch) | |
tree | bd4e7be619463fce3920d5a9fa448d7c9f1bbde2 /lisp/gnus/mml-sec.el | |
parent | 0c99c5973257dcdc4717b08e172a0b00a0d0c080 (diff) | |
download | emacs-16b90cfe1999f083b6d78a30afffec39ea207fdf.tar.gz |
Synch with Gnus trunk.
(mml-secure-message-sign): Fix cut and paste error.
Diffstat (limited to 'lisp/gnus/mml-sec.el')
-rw-r--r-- | lisp/gnus/mml-sec.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/mml-sec.el b/lisp/gnus/mml-sec.el index 35155b89ac2..41abfcdc9b9 100644 --- a/lisp/gnus/mml-sec.el +++ b/lisp/gnus/mml-sec.el @@ -308,11 +308,11 @@ Use METHOD if given. Else use `mml-secure-method' or (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)) |