# HG changeset patch # User Bill Wohler # Date 1130453850 0 # Node ID 06ed4e88d849ff5bc6a03a38f691a8de7a1f978f # Parent 2aa1446214feb4bb0978b8c7246028c8704a1084 * 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 diff -r 2aa1446214fe -r 06ed4e88d849 lisp/mh-e/ChangeLog --- 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 + + * 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 * mh-gnus.el: Load mml.el in order to see if diff -r 2aa1446214fe -r 06ed4e88d849 lisp/mh-e/mh-customize.el --- 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. diff -r 2aa1446214fe -r 06ed4e88d849 lisp/mh-e/mh-mime.el --- 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))