From: yamaoka Date: Fri, 9 Mar 2001 06:25:19 +0000 (+0000) Subject: * mime.el (mime-find-root-entity): Find root entity recursively. X-Git-Tag: flim-1_14-ueno-1~2 X-Git-Url: http://git.chise.org/gitweb/?p=elisp%2Fflim.git;a=commitdiff_plain;h=df7818ff1175b1561fec9d1ee57c0f3062d499d2;ds=inline * mime.el (mime-find-root-entity): Find root entity recursively. --- diff --git a/ChangeLog b/ChangeLog index b6954f4..2c17553 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-03-09 Akihiro Arisawa + + * mime.el (mime-find-root-entity): Find root recursively. + 2000-12-27 MORIOKA Tomohiko * mime-conf.el (mime-mailcap-file): Turn to non user option. diff --git a/mime.el b/mime.el index 2160569..56bdb1b 100644 --- a/mime.el +++ b/mime.el @@ -144,10 +144,9 @@ If MESSAGE is specified, it is regarded as root entity." (defun mime-find-root-entity (entity) "Return root entity of ENTITY." - (let ((p (mime-entity-parent entity))) - (if (null p) - entity - (mime-entity-parent p)))) + (while (not (mime-root-entity-p entity)) + (setq entity (mime-entity-parent entity))) + entity) ;;; @ Header buffer (obsolete)