aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark D. Baushke2006-01-03 00:01:49 +0000
committerMark D. Baushke2006-01-03 00:01:49 +0000
commit285d1e0cf46363715fc57b6b34a14ccc3068a2cc (patch)
tree39cafecef70df6b4930ee033a15d153eff4bf457
parent3ee073674a70df40f1186762e82a4bda1d8fd500 (diff)
downloademacs-285d1e0cf46363715fc57b6b34a14ccc3068a2cc.tar.gz
emacs-285d1e0cf46363715fc57b6b34a14ccc3068a2cc.zip
* mh-mime.el (mh-mml-unsecure-message): Remove unused argument.
-rw-r--r--lisp/mh-e/ChangeLog4
-rw-r--r--lisp/mh-e/mh-mime.el7
2 files changed, 7 insertions, 4 deletions
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog
index 4f3d56f98c9..a8e130bcc1b 100644
--- a/lisp/mh-e/ChangeLog
+++ b/lisp/mh-e/ChangeLog
@@ -1,3 +1,7 @@
12006-01-02 Mark D. Baushke <mdb@gnu.org>
2
3 * mh-mime.el (mh-mml-unsecure-message): Remove unused argument.
4
12006-01-01 Bill Wohler <wohler@newt.com> 52006-01-01 Bill Wohler <wohler@newt.com>
2 6
3 * mh-customize.el: Sync docstrings with manual for faces and sort 7 * mh-customize.el: Sync docstrings with manual for faces and sort
diff --git a/lisp/mh-e/mh-mime.el b/lisp/mh-e/mh-mime.el
index c028890f6a1..bcf7948964b 100644
--- a/lisp/mh-e/mh-mime.el
+++ b/lisp/mh-e/mh-mime.el
@@ -642,10 +642,9 @@ IDENTITY is optionally the default-user-id to use."
642 (mml-insert-tag 'secure 'method method 'mode mode))))))) 642 (mml-insert-tag 'secure 'method method 'mode mode)))))))
643 643
644;;;###mh-autoload 644;;;###mh-autoload
645(defun mh-mml-unsecure-message (&optional ignore) 645(defun mh-mml-unsecure-message ()
646 "Remove any secure message tags. 646 "Remove any secure message tags."
647The argument IGNORE is not used." 647 (interactive)
648 (interactive "P")
649 (if (not mh-pgp-support-flag) 648 (if (not mh-pgp-support-flag)
650 (error "Your version of Gnus does not support PGP/GPG") 649 (error "Your version of Gnus does not support PGP/GPG")
651 (mml-unsecure-message))) 650 (mml-unsecure-message)))