aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKarl Heuer1995-04-20 23:35:26 +0000
committerKarl Heuer1995-04-20 23:35:26 +0000
commit42c212029f115566cfdf36e08c132565df188d24 (patch)
tree224c87677f587eede6cf870384f9b07bf5ffb502 /lisp
parent939544befbfce86a0c195ac5d77df4d9b7c5a3ea (diff)
downloademacs-42c212029f115566cfdf36e08c132565df188d24.tar.gz
emacs-42c212029f115566cfdf36e08c132565df188d24.zip
Update some MIME doc strings.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mail/mh-mime.el17
1 files changed, 9 insertions, 8 deletions
diff --git a/lisp/mail/mh-mime.el b/lisp/mail/mh-mime.el
index 4bd403ec3fb..453c21ac862 100644
--- a/lisp/mail/mh-mime.el
+++ b/lisp/mail/mh-mime.el
@@ -1,5 +1,5 @@
1;;; mh-mime --- mh-e support for composing MIME messages 1;;; mh-mime --- mh-e support for composing MIME messages
2;; Time-stamp: <94/11/18 17:48:19 gildea> 2;; Time-stamp: <95/04/20 19:16:22 gildea>
3 3
4;; Copyright (C) 1993, 1995 Free Software Foundation, Inc. 4;; Copyright (C) 1993, 1995 Free Software Foundation, Inc.
5 5
@@ -27,7 +27,7 @@
27 27
28;;; Change Log: 28;;; Change Log:
29 29
30;; $Id: mh-mime.el,v 1.2 1995/04/09 22:30:35 kwzh Exp kwzh $ 30;; $Id: mh-mime.el,v 1.3 1995/04/10 00:20:00 kwzh Exp kwzh $
31 31
32;;; Code: 32;;; Code:
33 33
@@ -53,6 +53,7 @@ MH profile.")
53(defvar mh-edit-mhn-hook nil 53(defvar mh-edit-mhn-hook nil
54 "Invoked on the formatted letter by \\<mh-letter-mode-map>\\[mh-edit-mhn].") 54 "Invoked on the formatted letter by \\<mh-letter-mode-map>\\[mh-edit-mhn].")
55 55
56;;;###autoload
56(defvar mh-mime-content-types 57(defvar mh-mime-content-types
57 '(("text/plain") ("text/richtext") 58 '(("text/plain") ("text/richtext")
58 ("multipart/mixed") ("multipart/alternative") ("multipart/digest") 59 ("multipart/mixed") ("multipart/alternative") ("multipart/digest")
@@ -62,10 +63,10 @@ MH profile.")
62 ("image/jpeg") ("image/gif") 63 ("image/jpeg") ("image/gif")
63 ("audio/basic") 64 ("audio/basic")
64 ("video/mpeg")) 65 ("video/mpeg"))
65 "Legal MIME content types.") 66 "Legal MIME content types. See documentation for \\[mh-edit-mhn].")
66 67
67(defun mh-mhn-compose-insertion (pathname type description) 68(defun mh-mhn-compose-insertion (pathname type description)
68 "Add a directive to insert a message part from a file. 69 "Add a directive to insert a MIME message part from a file.
69This is the typical way to insert non-text parts in a message. 70This is the typical way to insert non-text parts in a message.
70Arguments are PATHNAME, which tells where to find the file, TYPE, the 71Arguments are PATHNAME, which tells where to find the file, TYPE, the
71MIME content type, and DESCRIPTION, a line of text for the 72MIME content type, and DESCRIPTION, a line of text for the
@@ -93,7 +94,7 @@ Content-description header. See also \\[mh-edit-mhn]."
93 94
94 95
95(defun mh-mhn-compose-anon-ftp (host pathname type description) 96(defun mh-mhn-compose-anon-ftp (host pathname type description)
96 "Add a directive for an anonymous ftp external body part. 97 "Add a directive for a MIME anonymous ftp external body part.
97This directive tells MH to include a reference to a 98This directive tells MH to include a reference to a
98message/external-body part retrievable by anonymous FTP. Arguments 99message/external-body part retrievable by anonymous FTP. Arguments
99are HOST and PATHNAME, which tell where to find the file, TYPE, the 100are HOST and PATHNAME, which tell where to find the file, TYPE, the
@@ -109,7 +110,7 @@ Content-description header. See also \\[mh-edit-mhn]."
109 type description)) 110 type description))
110 111
111(defun mh-mhn-compose-external-compressed-tar (host pathname description) 112(defun mh-mhn-compose-external-compressed-tar (host pathname description)
112 "Add a directive to include a reference to a compressed tar file. 113 "Add a directive to include a MIME reference to a compressed tar file.
113The file should be available via anonymous ftp. This directive 114The file should be available via anonymous ftp. This directive
114tells MH to include a reference to a message/external-body part. 115tells MH to include a reference to a message/external-body part.
115Arguments are HOST and PATHNAME, which tell where to find the file, and 116Arguments are HOST and PATHNAME, which tell where to find the file, and
@@ -148,10 +149,10 @@ See also \\[mh-edit-mhn]."
148 (insert "\n")) 149 (insert "\n"))
149 150
150(defun mh-mhn-compose-forw (&optional description folder messages) 151(defun mh-mhn-compose-forw (&optional description folder messages)
151 "Add a forw directive to this message. 152 "Add a forw directive to this message, to forward a message with MIME.
152This directive tells MH to include the named messages in this one. 153This directive tells MH to include the named messages in this one.
153Arguments are DESCRIPTION, a line of text for the Content-description header, 154Arguments are DESCRIPTION, a line of text for the Content-description header,
154FOLDER and MESSAGES, which name the message(s) to be forwarded. 155and FOLDER and MESSAGES, which name the message(s) to be forwarded.
155See also \\[mh-edit-mhn]." 156See also \\[mh-edit-mhn]."
156 (interactive (list 157 (interactive (list
157 (read-string "Forw Content-description: ") 158 (read-string "Forw Content-description: ")