In M-x imail-get-new-mail (and M-x imail), move to first unseen
authorChris Hanson <org/chris-hanson/cph>
Wed, 5 Jul 2000 18:07:04 +0000 (18:07 +0000)
committerChris Hanson <org/chris-hanson/cph>
Wed, 5 Jul 2000 18:07:04 +0000 (18:07 +0000)
message even if the server probe reveals no new mail.  This is
important because the new mail is usually fetched by the background
probe thread.

v7/src/imail/imail-top.scm

index b5e7d48051a72163db15e56e5cd689096eda153d..38b2705b00e6e60ad5904b9c50859a9edb9f6869 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: imail-top.scm,v 1.207 2000/07/05 01:04:40 cph Exp $
+;;; $Id: imail-top.scm,v 1.208 2000/07/05 18:07:04 cph Exp $
 ;;;
 ;;; Copyright (c) 1999-2000 Massachusetts Institute of Technology
 ;;;
@@ -1422,10 +1422,10 @@ A prefix argument says to prompt for a URL and append all messages
        (let* ((folder (selected-folder))
               (count (folder-modification-count folder)))
          (probe-folder folder)
-         (cond ((<= (folder-modification-count folder) count)
-                (message "No changes to mail folder"))
-               ((navigator/first-unseen-message folder)
+         (cond ((navigator/first-unseen-message folder)
                 => (lambda (unseen) (select-message folder unseen)))
+               ((<= (folder-modification-count folder) count)
+                (message "No changes to mail folder"))
                ((selected-message #f)
                 (message "No unseen messages"))
                ((navigator/last-message folder)