# HG changeset patch # User Juanma Barranquero # Date 1118933843 0 # Node ID 91a6c1b5b3c47986df754a316aa36d1d89ceaa21 # Parent c6c9f46490d0587586e8783ba106d8b2c9a4f60f (pop3-user): Don't use `format' on `error' arguments. diff -r c6c9f46490d0 -r 91a6c1b5b3c4 lisp/gnus/pop3.el --- a/lisp/gnus/pop3.el Thu Jun 16 14:54:09 2005 +0000 +++ b/lisp/gnus/pop3.el Thu Jun 16 14:57:23 2005 +0000 @@ -385,7 +385,7 @@ (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."