From 2db1cf19018f5e84cc73fd23ee0c4ce1ba861b44 Mon Sep 17 00:00:00 2001 From: ueno Date: Wed, 18 Aug 1999 08:13:51 +0000 Subject: [PATCH] (pop3-get-extended-response): Fix regexp. --- lisp/pop3.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/pop3.el b/lisp/pop3.el index 8a2bd52..4a188bd 100644 --- a/lisp/pop3.el +++ b/lisp/pop3.el @@ -532,7 +532,7 @@ where (let ((start pop3-read-point) end) (set-buffer (process-buffer process)) (goto-char start) - (while (not (re-search-forward "\\.\r\n" nil t)) + (while (not (re-search-forward "^\\.\r\n" nil t)) (accept-process-output process 3) (goto-char start)) (setq pop3-read-point (point-marker)) -- 1.7.10.4