]> git.eshelyaron.com Git - emacs.git/commitdiff
(pop3-user): Don't use `format' on `error' arguments.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 16 Jun 2005 14:57:23 +0000 (14:57 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 16 Jun 2005 14:57:23 +0000 (14:57 +0000)
lisp/gnus/pop3.el

index 637421c46d9585d23a1620b12f1f975f97fe922b..b8d827e7d9acd4b549ac63acb16a6c0a298b26e1 100644 (file)
@@ -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."