From 3ec530e58fd84f5909eda543c81b17e21841e0e2 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Mon, 30 Aug 1999 00:38:35 +0000 Subject: [PATCH] Sync up with the latest semi-1_13 branch. --- ChangeLog | 5 +++++ mime-play.el | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) 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)) -- 1.7.10.4