changeset 66474:06ed4e88d849

* mh-customize.el (mh-compose-insertion, mh-x-face-file): Checkdoc fixes. * mh-mime.el (mh-mh-to-mime, mh-mml-attach-file) (mh-mml-secure-message-sign, mh-mml-secure-message-encrypt) (mh-mml-secure-message-signencrypt): Ditto
author Bill Wohler <wohler@newt.com>
date Thu, 27 Oct 2005 22:57:30 +0000
parents 2aa1446214fe
children 7e10b1cb2a67
files lisp/mh-e/ChangeLog lisp/mh-e/mh-customize.el lisp/mh-e/mh-mime.el
diffstat 3 files changed, 21 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/mh-e/ChangeLog	Thu Oct 27 18:22:00 2005 +0000
+++ b/lisp/mh-e/ChangeLog	Thu Oct 27 22:57:30 2005 +0000
@@ -1,3 +1,12 @@
+2005-10-27  Bill Wohler  <wohler@newt.com>
+
+	* mh-customize.el (mh-compose-insertion, mh-x-face-file): Checkdoc
+	fixes.
+	
+	* mh-mime.el (mh-mh-to-mime, mh-mml-attach-file) 
+	(mh-mml-secure-message-sign, mh-mml-secure-message-encrypt) 
+	(mh-mml-secure-message-signencrypt): Ditto
+
 2005-10-24  Bill Wohler  <wohler@newt.com>
 
 	* mh-gnus.el: Load mml.el in order to see if
--- a/lisp/mh-e/mh-customize.el	Thu Oct 27 18:22:00 2005 +0000
+++ b/lisp/mh-e/mh-customize.el	Thu Oct 27 22:57:30 2005 +0000
@@ -763,12 +763,12 @@
 ;;; Editing a Draft (:group 'mh-letter)
 
 (defcustom mh-compose-insertion (if (locate-library "mml") 'mml 'mh)
-  "Type of tags used when composing MIME messages. In addition to MH-style
-directives, MH-E also supports MML (MIME Meta Language) tags. (see Info node
-`(emacs-mime)Composing'). This option can be used to choose between them. By
-default, this option is set to \"MML\" if it is supported since it provides a
-lot more functionality. This option can also be set to \"MH\" if MH-style
-directives are preferred."
+  "Type of tags used when composing MIME messages.
+In addition to MH-style directives, MH-E also supports MML (MIME Meta
+Language) tags. (see Info node `(emacs-mime)Composing'). This option can be
+used to choose between them. By default, this option is set to \"MML\" if it
+is supported since it provides a lot more functionality. This option can also
+be set to \"MH\" if MH-style directives are preferred."
   :type '(choice (const :tag "MML" mml)
                  (const :tag "MH"  mh))
   :group 'mh-letter)
@@ -887,7 +887,7 @@
 
 The \"X-Face:\" header field, which is a low-resolution, black and white
 image, can be generated using the \"compface\"
-(ftp://ftp.cs.indiana.edu/pub/faces/compface/compface.tar.Z) command. The
+\(ftp://ftp.cs.indiana.edu/pub/faces/compface/compface.tar.Z) command. The
 \"Online X-Face Converter\" (http://www.dairiki.org/xface/) is a useful
 resource for quick conversion of images into \"X-Face:\" header fields.
 
--- a/lisp/mh-e/mh-mime.el	Thu Oct 27 18:22:00 2005 +0000
+++ b/lisp/mh-e/mh-mime.el	Thu Oct 27 22:57:30 2005 +0000
@@ -429,7 +429,7 @@
 `mh-mh-to-mime-args' to \"-check\". The recipient of your message can then run
 \"mhbuild -check\" on the message--\"mhbuild\" (\"mhn\") will complain if the
 message has been corrupted on the way. This command only consults this option
-when given a prefix argument.
+when given a prefix argument EXTRA-ARGS.
 
 The value of `mh-mh-to-mime-hook' is a list of functions to be called after
 the message has been formatted.
@@ -582,7 +582,7 @@
 (defun mh-mml-attach-file (&optional disposition)
   "Add a tag to insert a MIME message part from a file.
 You are prompted for the filename containing the object, the media type if it
-cannot be determined automatically, a content description and the disposition
+cannot be determined automatically, a content description and the DISPOSITION
 of the attachment.
 
 This is basically `mml-attach-file' from Gnus, modified such that a prefix
@@ -637,7 +637,7 @@
 A proper multipart message is created for you when you send the message. Use
 the \\[mh-mml-unsecure-message] command to remove this tag. Use a prefix
 argument METHOD to be prompted for one of the possible security methods
-(see `mh-mml-method-default')."
+\(see `mh-mml-method-default')."
   (interactive (list (mh-mml-query-cryptographic-method)))
   (mh-secure-message method "sign" mh-identity-pgg-default-user-id))
 
@@ -647,7 +647,7 @@
 A proper multipart message is created for you when you send the message. Use
 the \\[mh-mml-unsecure-message] command to remove this tag. Use a prefix
 argument METHOD to be prompted for one of the possible security methods
-(see `mh-mml-method-default')."
+\(see `mh-mml-method-default')."
   (interactive (list (mh-mml-query-cryptographic-method)))
   (mh-secure-message method "encrypt" mh-identity-pgg-default-user-id))
 
@@ -657,7 +657,7 @@
 A proper multipart message is created for you when you send the message. Use
 the \\[mh-mml-unsecure-message] command to remove this tag. Use a prefix
 argument METHOD to be prompted for one of the possible security methods
-(see `mh-mml-method-default')."
+\(see `mh-mml-method-default')."
   (interactive (list (mh-mml-query-cryptographic-method)))
   (mh-secure-message method "signencrypt" mh-identity-pgg-default-user-id))