From: morioka Date: Wed, 24 Jun 1998 12:03:58 +0000 (+0000) Subject: (mime-parse-encapsulated): New function. X-Git-Tag: chao-1_6_0-199811302358 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=refs%2Fheads%2Fchao-1_6_0;p=elisp%2Fflim.git (mime-parse-encapsulated): New function. (mime-parse-message): Use `mime-parse-encapsulated'. --- diff --git a/mime-parse.el b/mime-parse.el index e7c356b..87df395 100644 --- a/mime-parse.el +++ b/mime-parse.el @@ -197,6 +197,17 @@ If is is not found, return DEFAULT-ENCODING." (mime-entity-set-children entity (nreverse children)) entity)) +(defun mime-parse-encapsulated (entity) + (mime-entity-set-children + entity + (save-restriction + (narrow-to-region (mime-entity-body-start entity) + (mime-entity-body-end entity)) + (list (mime-parse-message + nil nil (cons 0 (mime-entity-node-id entity)))) + )) + entity) + ;;;###autoload (defun mime-parse-message (&optional default-ctl default-encoding node-id) "Parse current-buffer as a MIME message. @@ -249,14 +260,9 @@ mime-{parse|read}-Content-Type." (memq (mime-content-type-subtype content-type) '(rfc822 news external-body) )) - (mime-entity-set-children entity - (save-restriction - (narrow-to-region body-start body-end) - (list (mime-parse-message - nil nil (cons 0 node-id))) - )) - )) - entity)) + (mime-parse-encapsulated entity) + ) + (t entity)))) ;;; @ for buffer