From cf002700782097bb0b6f5e6a7d285c111d662c20 Mon Sep 17 00:00:00 2001 From: morioka Date: Wed, 6 May 1998 10:56:57 +0000 Subject: [PATCH] Move 'mime-type/subtype-string to flim/mime-def.el. --- mime-parse.el | 7 ------- 1 file changed, 7 deletions(-) diff --git a/mime-parse.el b/mime-parse.el index ac77bff..ea75f65 100644 --- a/mime-parse.el +++ b/mime-parse.el @@ -174,13 +174,6 @@ and return parsed it. [mime-parse.el]" (defsubst mime-entity-encoding (entity-info) (aref entity-info 6)) (defsubst mime-entity-children (entity-info) (aref entity-info 7)) -(defsubst mime-type/subtype-string (type &optional subtype) - "Return type/subtype string from TYPE and SUBTYPE." - (if type - (if subtype - (format "%s/%s" type subtype) - (format "%s" type)))) - (defsubst mime-entity-type/subtype (entity-info) (mime-type/subtype-string (mime-entity-media-type entity-info) (mime-entity-media-subtype entity-info))) -- 1.7.10.4