* elmo-dop.el (elmo-folder-status-dop): If spool-folder is absent,
authoryoichi <yoichi>
Sun, 13 Oct 2002 01:09:17 +0000 (01:09 +0000)
committeryoichi <yoichi>
Sun, 13 Oct 2002 01:09:17 +0000 (01:09 +0000)
set spool-length to 0.

elmo/ChangeLog
elmo/elmo-dop.el

index 5057ad9..3be2794 100644 (file)
@@ -1,3 +1,8 @@
+2002-10-12  Yoichi NAKAYAMA  <yoichi@eken.phys.nagoya-u.ac.jp>
+
+       * elmo-dop.el (elmo-folder-status-dop): If spool-folder is absent,
+       set spool-length to 0.
+
 2002-10-06  Hiroya Murata  <lapis-lazuli@pop06.odn.ne.jp>
 
        * elmo-dop.el (elmo-dop-queue-flush): Check obsolete at first.
index 9c785f1..e64c203 100644 (file)
@@ -281,8 +281,10 @@ FOLDER is the folder structure."
         spool-length
         (i 0)
         max-num)
-    (setq spool-length (car (if (elmo-folder-exists-p spool-folder)
-                               (elmo-folder-status spool-folder))))
+    (setq spool-length
+         (or (car (if (elmo-folder-exists-p spool-folder)
+                      (elmo-folder-status spool-folder)))
+             0))
     (setq max-num
          (or (nth (max (- (length number-list) 1) 0) number-list)
              0))