summaryrefslogtreecommitdiff
path: root/lisp/gnus
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2005-06-16 14:57:23 +0000
committerJuanma Barranquero <lekktu@gmail.com>2005-06-16 14:57:23 +0000
commit2c2b732fa0a26ea6d8159d9e5a0444d81e63ffed (patch)
tree0352570698143304730a005e1d63ddc0707aa408 /lisp/gnus
parentb6a97790db0a6ae27e81d54d5986e9c27914b75e (diff)
downloademacs-2c2b732fa0a26ea6d8159d9e5a0444d81e63ffed.tar.gz
(pop3-user): Don't use `format' on `error' arguments.
Diffstat (limited to 'lisp/gnus')
-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."
(pop3-send-command process (format "USER %s" user))
(let ((response (pop3-read-response process t)))
(if (not (and response (string-match "+OK" response)))
- (error (format "USER %s not valid" user)))))
+ (error "USER %s not valid" user))))
(defun pop3-pass (process)
"Send authentication information to the server."