Mercurial > emacs
changeset 63495:91a6c1b5b3c4
(pop3-user): Don't use `format' on `error' arguments.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Thu, 16 Jun 2005 14:57:23 +0000 |
parents | c6c9f46490d0 |
children | 0be1bcd6830a |
files | lisp/gnus/pop3.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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."