From: Mark D. Baushke Date: Tue, 3 Jan 2006 00:01:49 +0000 (+0000) Subject: * mh-mime.el (mh-mml-unsecure-message): Remove unused argument. X-Git-Tag: emacs-pretest-22.0.90~4926 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=285d1e0cf46363715fc57b6b34a14ccc3068a2cc;p=emacs.git * mh-mime.el (mh-mml-unsecure-message): Remove unused argument. --- 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 @@ +2006-01-02 Mark D. Baushke + + * mh-mime.el (mh-mml-unsecure-message): Remove unused argument. + 2006-01-01 Bill Wohler * 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." (mml-insert-tag 'secure 'method method 'mode mode))))))) ;;;###mh-autoload -(defun mh-mml-unsecure-message (&optional ignore) - "Remove any secure message tags. -The argument IGNORE is not used." - (interactive "P") +(defun mh-mml-unsecure-message () + "Remove any secure message tags." + (interactive) (if (not mh-pgp-support-flag) (error "Your version of Gnus does not support PGP/GPG") (mml-unsecure-message)))