diff options
| author | Glenn Morris | 2007-10-13 03:03:54 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-10-13 03:03:54 +0000 |
| commit | 3d3cfc902abe7edcd64f4d8d48b99936e25f6e70 (patch) | |
| tree | 636d16a6a68830c865d011182f060d3a10145ab8 | |
| parent | cfedf6ccbab3b9a5eaf305f89c809879119629c1 (diff) | |
| download | emacs-3d3cfc902abe7edcd64f4d8d48b99936e25f6e70.tar.gz emacs-3d3cfc902abe7edcd64f4d8d48b99936e25f6e70.zip | |
(feedmail-run-the-queue)
(feedmail-look-at-queue-directory): Use mapc rather than mapcar.
| -rw-r--r-- | lisp/mail/feedmail.el | 4 |
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 |