* bbdb-wl.el (bbdb-wl-setup): Added autoload magic.
authorteranisi <teranisi>
Wed, 12 Dec 2001 06:07:39 +0000 (06:07 +0000)
committerteranisi <teranisi>
Wed, 12 Dec 2001 06:07:39 +0000 (06:07 +0000)
* elmo-pop3.el (elmo-pop3-read-response): Set timeout argument
of accept-process-output as 1.
(elmo-pop3-read-contents): Ditto.
(elmo-pop3-read-body): Ditto.

elmo/ChangeLog
elmo/elmo-pop3.el
utils/ChangeLog
utils/bbdb-wl.el

index 7340002..1af19b4 100644 (file)
@@ -1,3 +1,10 @@
+2001-12-12  Yuuichi Teranishi  <teranisi@gohome.org>
+
+       * elmo-pop3.el (elmo-pop3-read-response): Set timeout argument
+       of accept-process-output as 1.
+       (elmo-pop3-read-contents): Ditto.
+       (elmo-pop3-read-body): Ditto.
+
 2001-12-12  TAKAHASHI Kaoru  <kaoru@kaisei.org>
 
        * elmo-version.el (product-version-as-string): Remove define.
index 259c311..2af46c9 100644 (file)
@@ -190,7 +190,7 @@ Debug information is inserted in the buffer \"*POP3 DEBUG*\"")
       (while response-continue
        (goto-char elmo-pop3-read-point)
        (while (not (re-search-forward "\r?\n" nil t))
-         (accept-process-output process)
+         (accept-process-output process 1)
          (goto-char elmo-pop3-read-point))
        (setq match-end (point))
        (setq response-string
@@ -420,7 +420,7 @@ Debug information is inserted in the buffer \"*POP3 DEBUG*\"")
          match-end)
       (goto-char elmo-pop3-read-point)
       (while (not (re-search-forward "^\\.\r\n" nil t))
-       (accept-process-output process)
+       (accept-process-output process 1)
        (goto-char elmo-pop3-read-point))
       (setq match-end (point))
       (elmo-delete-cr
@@ -809,7 +809,7 @@ Debug information is inserted in the buffer \"*POP3 DEBUG*\"")
          end)
       (goto-char start)
       (while (not (re-search-forward "^\\.\r?\n" nil t))
-       (accept-process-output process)
+       (accept-process-output process 1)
        (goto-char start))
       (setq end (point))
       (with-current-buffer outbuf
index eb3b3f5..397a19a 100644 (file)
@@ -1,3 +1,7 @@
+2001-12-12  Yuuichi Teranishi  <teranisi@gohome.org>
+
+       * bbdb-wl.el (bbdb-wl-setup): Added autoload magic.
+
 2001-12-12  TAKAHASHI Kaoru  <kaoru@kaisei.org>
 
        * bbdb-wl.el (bbdb-wl-setup): require bbdb-autoloads if exists.
index 3ba6872..cfabd0c 100644 (file)
@@ -32,6 +32,7 @@
 (defvar bbdb-wl-get-update-record-hook nil)
 (defvar bbdb-wl-folder-regexp nil)
 
+;;;###autoload
 (defun bbdb-wl-setup ()
   (add-hook 'wl-message-redisplay-hook 'bbdb-wl-get-update-record)
   (add-hook 'wl-summary-exit-hook 'bbdb-wl-hide-bbdb-buffer)