]> git.eshelyaron.com Git - emacs.git/commitdiff
* mh-mime.el (mh-mml-unsecure-message): Remove unused argument.
authorMark D. Baushke <mdb@gnu.org>
Tue, 3 Jan 2006 00:01:49 +0000 (00:01 +0000)
committerMark D. Baushke <mdb@gnu.org>
Tue, 3 Jan 2006 00:01:49 +0000 (00:01 +0000)
lisp/mh-e/ChangeLog
lisp/mh-e/mh-mime.el

index 4f3d56f98c9ccb76618bba66fb254e46131f234a..a8e130bcc1badc8837caf44a00fd2d433fb86bcc 100644 (file)
@@ -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
index c028890f6a15b64e3119b62b2904a46d6ea4cf52..bcf7948964b30ff96321d854d3f0405dafbc9d58 100644 (file)
@@ -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)))