From 20907be1f390950804561ab0d131e27534f15647 Mon Sep 17 00:00:00 2001 From: tomo Date: Wed, 20 Dec 2000 07:21:52 +0000 Subject: [PATCH] (mime-entity-media-type): Add DOC. (mime-entity-media-subtype): Add DOC. (mime-entity-parameters): Add DOC. (mime-entity-type/subtype): Add DOC. --- mime.el | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/mime.el b/mime.el index f32efb7..2160569 100644 --- 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))) -- 1.7.10.4