From: yamaoka Date: Mon, 30 Aug 1999 00:38:35 +0000 (+0000) Subject: Sync up with the latest semi-1_13 branch. X-Git-Tag: wemi-1_13_6~4 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=3ec530e58fd84f5909eda543c81b17e21841e0e2;p=elisp%2Fsemi.git Sync up with the latest semi-1_13 branch. --- diff --git a/ChangeLog b/ChangeLog index 10e6d01..21ce393 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-08-28 MORIOKA Tomohiko + + * mime-play.el (mime-store-message/partial-piece): Use + `directory-files' to check number of pieces. + 1999-08-26 MORIOKA Tomohiko * mime-play.el (mime-store-message/partial-piece): Don't refer diff --git a/mime-play.el b/mime-play.el index 29545e2..0840304 100644 --- a/mime-play.el +++ b/mime-play.el @@ -613,7 +613,9 @@ It is registered to variable `mime-preview-quitting-method-alist'." (kill-buffer (current-buffer)) ))) ))) - (if (and total (> total 0)) + (if (and total (> total 0) + (>= (length (directory-files root-dir nil "^[0-9]+$" t)) + total)) (catch 'tag (save-excursion (set-buffer (get-buffer-create mime-temp-buffer-name))