From: yamaoka Date: Mon, 30 Aug 1999 00:39:02 +0000 (+0000) Subject: Sync up with the latest semi-1_13 branch. X-Git-Tag: semi-pgpgpg_20~21 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=fbe2ee8ebcb096c51bb7086a63a1464938b396c5;p=elisp%2Fsemi.git Sync up with the latest semi-1_13 branch. --- diff --git a/ChangeLog b/ChangeLog index 8109619..4d0b435 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 a230f55..9dd8019 100644 --- a/mime-play.el +++ b/mime-play.el @@ -625,7 +625,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))