+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.
(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
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
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
+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.
(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)