From: Juanma Barranquero Date: Thu, 16 Jun 2005 14:57:23 +0000 (+0000) Subject: (pop3-user): Don't use `format' on `error' arguments. X-Git-Tag: emacs-pretest-22.0.90~8888 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2c2b732fa0a26ea6d8159d9e5a0444d81e63ffed;p=emacs.git (pop3-user): Don't use `format' on `error' arguments. --- 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."