aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/gnus/pop3.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/pop3.el b/lisp/gnus/pop3.el
index 637421c46d9..b8d827e7d9a 100644
--- a/lisp/gnus/pop3.el
+++ b/lisp/gnus/pop3.el
@@ -385,7 +385,7 @@ If NOW, use that time instead."
385 (pop3-send-command process (format "USER %s" user)) 385 (pop3-send-command process (format "USER %s" user))
386 (let ((response (pop3-read-response process t))) 386 (let ((response (pop3-read-response process t)))
387 (if (not (and response (string-match "+OK" response))) 387 (if (not (and response (string-match "+OK" response)))
388 (error (format "USER %s not valid" user))))) 388 (error "USER %s not valid" user))))
389 389
390(defun pop3-pass (process) 390(defun pop3-pass (process)
391 "Send authentication information to the server." 391 "Send authentication information to the server."