(pop3-get-extended-response): Fix regexp.
authorueno <ueno>
Wed, 18 Aug 1999 08:13:51 +0000 (08:13 +0000)
committerueno <ueno>
Wed, 18 Aug 1999 08:13:51 +0000 (08:13 +0000)
lisp/pop3.el

index 8a2bd52..4a188bd 100644 (file)
@@ -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))