+2010-09-06 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * pop3.el: Require cl when compiling.
+ (pop3-number-of-responses): Search for "+OK", not "+OK ".
+
2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
* gnus-start.el (gnus-get-unread-articles): Don't bother with groups
;;; Code:
+(eval-when-compile (require 'cl))
(require 'mail-utils)
(defvar parse-time-months)
(let ((responses 0))
(save-excursion
(goto-char (point-min))
- (while (or (and (re-search-forward "^\\+OK " nil t)
+ (while (or (and (re-search-forward "^\\+OK" nil t)
(or (not endp)
(re-search-forward "^\\.\r?\n" nil t)))
(re-search-forward "^-ERR " nil t))