From 2c2b732fa0a26ea6d8159d9e5a0444d81e63ffed Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Thu, 16 Jun 2005 14:57:23 +0000 Subject: [PATCH] (pop3-user): Don't use `format' on `error' arguments. --- lisp/gnus/pop3.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." -- 2.39.2