aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/mail/feedmail.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mail/feedmail.el b/lisp/mail/feedmail.el
index b8d42debe6f..e75387f48ac 100644
--- a/lisp/mail/feedmail.el
+++ b/lisp/mail/feedmail.el
@@ -1588,7 +1588,7 @@ backup file names and the like)."
1588 (setq list-of-possible-fqms (directory-files feedmail-queue-directory t)) 1588 (setq list-of-possible-fqms (directory-files feedmail-queue-directory t))
1589 (if feedmail-queue-run-orderer 1589 (if feedmail-queue-run-orderer
1590 (setq list-of-possible-fqms (funcall feedmail-queue-run-orderer list-of-possible-fqms))) 1590 (setq list-of-possible-fqms (funcall feedmail-queue-run-orderer list-of-possible-fqms)))
1591 (mapcar 1591 (mapc
1592 '(lambda (blobby) 1592 '(lambda (blobby)
1593 (setq maybe-file (expand-file-name blobby feedmail-queue-directory)) 1593 (setq maybe-file (expand-file-name blobby feedmail-queue-directory))
1594 (cond 1594 (cond
@@ -1835,7 +1835,7 @@ the counts."
1835 (let ((q-cnt 0) (q-oth 0) (high-water 0) (blobbet)) 1835 (let ((q-cnt 0) (q-oth 0) (high-water 0) (blobbet))
1836 ;; iterate, counting things we find along the way in the directory 1836 ;; iterate, counting things we find along the way in the directory
1837 (if (file-directory-p queue-directory) 1837 (if (file-directory-p queue-directory)
1838 (mapcar 1838 (mapc
1839 '(lambda (blobby) 1839 '(lambda (blobby)
1840 (cond 1840 (cond
1841 ((file-directory-p blobby) nil) ; don't care about subdirs 1841 ((file-directory-p blobby) nil) ; don't care about subdirs