(mime-entity-media-type): Add DOC.
authortomo <tomo>
Wed, 20 Dec 2000 07:21:52 +0000 (07:21 +0000)
committertomo <tomo>
Wed, 20 Dec 2000 07:21:52 +0000 (07:21 +0000)
(mime-entity-media-subtype): Add DOC.
(mime-entity-parameters): Add DOC.
(mime-entity-type/subtype): Add DOC.

mime.el

diff --git a/mime.el b/mime.el
index f32efb7..2160569 100644 (file)
--- a/mime.el
+++ b/mime.el
@@ -402,12 +402,19 @@ default value."
 
 
 (defsubst mime-entity-media-type (entity)
+  "Return primary media-type of ENTITY."
   (mime-content-type-primary-type (mime-entity-content-type entity)))
+
 (defsubst mime-entity-media-subtype (entity)
+  "Return media-subtype of ENTITY."
   (mime-content-type-subtype (mime-entity-content-type entity)))
+
 (defsubst mime-entity-parameters (entity)
+  "Return parameters of Content-Type of ENTITY."
   (mime-content-type-parameters (mime-entity-content-type entity)))
+
 (defsubst mime-entity-type/subtype (entity-info)
+  "Return type/subtype of Content-Type of ENTITY."
   (mime-type/subtype-string (mime-entity-media-type entity-info)
                            (mime-entity-media-subtype entity-info)))