From: morioka Date: Wed, 6 May 1998 10:56:57 +0000 (+0000) Subject: Move 'mime-type/subtype-string to flim/mime-def.el. X-Git-Tag: semi-1_4_1~4 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=cf002700782097bb0b6f5e6a7d285c111d662c20;p=elisp%2Fsemi.git Move 'mime-type/subtype-string to flim/mime-def.el. --- 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)))