Synch to Oort Gnus.
authoryamaoka <yamaoka>
Mon, 17 Feb 2003 09:26:32 +0000 (09:26 +0000)
committeryamaoka <yamaoka>
Mon, 17 Feb 2003 09:26:32 +0000 (09:26 +0000)
lisp/ChangeLog
lisp/mail-source.el

index a2140e3..45d4e76 100644 (file)
@@ -1,3 +1,8 @@
+2003-02-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * mail-source.el (mail-source-fetch): Reverse the return value of
+       the continuation question.
+
 2003-02-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * nndraft.el (nndraft-request-move-article): Bind
index b1e7abd..dfc2e5e 100644 (file)
@@ -484,15 +484,16 @@ Return the number of files that were found."
                     (funcall function source callback)
                   (error
                    (if (and (not mail-source-ignore-errors)
-                            (yes-or-no-p
-                             (format "Mail source %s error (%s).  Continue? "
-                                     (if (memq ':password source)
-                                         (let ((s (copy-sequence source)))
-                                           (setcar (cdr (memq ':password s)) 
-                                                   "********")
-                                           s)
-                                       source)
-                                     (cadr err))))
+                            (not
+                             (yes-or-no-p
+                              (format "Mail source %s error (%s).  Continue? "
+                                      (if (memq ':password source)
+                                          (let ((s (copy-sequence source)))
+                                            (setcar (cdr (memq ':password s)) 
+                                                    "********")
+                                            s)
+                                        source)
+                                      (cadr err)))))
                      (error "Cannot get new mail"))
                    0)))))))))