2001-08-20 Tatsuya Kinoshita <tats@iris.ne.jp>
authorteranisi <teranisi>
Mon, 20 Aug 2001 16:09:34 +0000 (16:09 +0000)
committerteranisi <teranisi>
Mon, 20 Aug 2001 16:09:34 +0000 (16:09 +0000)
* elmo-pop3.el (elmo-pop3-parse-uidl-response): Allow multiple
space delimiter for uidl response.

elmo/ChangeLog
elmo/elmo-pop3.el

index d274f6a..c2812ac 100644 (file)
@@ -1,3 +1,8 @@
+2001-08-20  Tatsuya Kinoshita <tats@iris.ne.jp>
+
+       * elmo-pop3.el (elmo-pop3-parse-uidl-response): Allow multiple
+       space delimiter for uidl response.
+
 2001-08-20  Yuuichi Teranishi  <teranisi@gohome.org>
 
        * elmo-vars.el (elmo-use-semi): Eliminated.
index 23660a4..ef2ca15 100644 (file)
@@ -489,7 +489,7 @@ Debug information is inserted in the buffer \"*POP3 DEBUG*\"")
       (let (number uid list)
        (insert string)
        (goto-char (point-min))
-       (while (re-search-forward "^\\([0-9]+\\)[\t ]\\([^ \n]+\\)$" nil t)
+       (while (re-search-forward "^\\([0-9]+\\)[\t ]+\\([^ \n]+\\)$" nil t)
          (setq number  (elmo-match-buffer 1))
          (setq uid (elmo-match-buffer 2))
          (with-current-buffer buffer