diff options
| author | Katsumi Yamaoka | 2010-05-06 05:54:57 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2010-05-06 05:54:57 +0000 |
| commit | 16b90cfe1999f083b6d78a30afffec39ea207fdf (patch) | |
| tree | bd4e7be619463fce3920d5a9fa448d7c9f1bbde2 | |
| parent | 0c99c5973257dcdc4717b08e172a0b00a0d0c080 (diff) | |
| download | emacs-16b90cfe1999f083b6d78a30afffec39ea207fdf.tar.gz emacs-16b90cfe1999f083b6d78a30afffec39ea207fdf.zip | |
Synch with Gnus trunk.
(mml-secure-message-sign): Fix cut and paste error.
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/mml-sec.el | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 9fbf476193d..3a4a502679d 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-05-06 Tommi Vainikainen <thv@iki.fi> (tiny change) | ||
| 2 | |||
| 3 | * mml-sec.el (mml-secure-message-sign): Fix cut and paste error. | ||
| 4 | |||
| 1 | 2010-05-06 Katsumi Yamaoka <yamaoka@jpl.org> | 5 | 2010-05-06 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 6 | ||
| 3 | * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el, | 7 | * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el, |
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 | |||
| 308 | 308 | ||
| 309 | 309 | ||
| 310 | (defun mml-secure-message-sign (&optional method) | 310 | (defun mml-secure-message-sign (&optional method) |
| 311 | "Add MML tags to sign this MML part. | 311 | "Add MML tags to sign the entire message. |
| 312 | Use METHOD if given. Else use `mml-secure-method' or | 312 | Use METHOD if given. Else use `mml-secure-method' or |
| 313 | `mml-default-sign-method'." | 313 | `mml-default-sign-method'." |
| 314 | (interactive) | 314 | (interactive) |
| 315 | (mml-secure-part | 315 | (mml-secure-message |
| 316 | (or method mml-secure-method mml-default-sign-method) | 316 | (or method mml-secure-method mml-default-sign-method) |
| 317 | 'sign)) | 317 | 'sign)) |
| 318 | 318 | ||