changeset 67984:fb7a11feb83e

* mh-mime.el (mh-mml-unsecure-message): Remove unused argument.
author Mark D. Baushke <mdb@gnu.org>
date Tue, 03 Jan 2006 00:01:49 +0000
parents eea3a49a9d6c
children d2eeb19b72bd
files lisp/mh-e/ChangeLog lisp/mh-e/mh-mime.el
diffstat 2 files changed, 7 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/mh-e/ChangeLog	Mon Jan 02 22:27:08 2006 +0000
+++ b/lisp/mh-e/ChangeLog	Tue Jan 03 00:01:49 2006 +0000
@@ -1,3 +1,7 @@
+2006-01-02  Mark D. Baushke  <mdb@gnu.org>
+
+	* mh-mime.el (mh-mml-unsecure-message): Remove unused argument.
+
 2006-01-01  Bill Wohler  <wohler@newt.com>
 
 	* mh-customize.el: Sync docstrings with manual for faces and sort
--- a/lisp/mh-e/mh-mime.el	Mon Jan 02 22:27:08 2006 +0000
+++ b/lisp/mh-e/mh-mime.el	Tue Jan 03 00:01:49 2006 +0000
@@ -642,10 +642,9 @@
             (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)))