diff options
| author | Juanma Barranquero | 2005-06-16 14:57:23 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-06-16 14:57:23 +0000 |
| commit | 2c2b732fa0a26ea6d8159d9e5a0444d81e63ffed (patch) | |
| tree | 0352570698143304730a005e1d63ddc0707aa408 | |
| parent | b6a97790db0a6ae27e81d54d5986e9c27914b75e (diff) | |
| download | emacs-2c2b732fa0a26ea6d8159d9e5a0444d81e63ffed.tar.gz emacs-2c2b732fa0a26ea6d8159d9e5a0444d81e63ffed.zip | |
(pop3-user): Don't use `format' on `error' arguments.
| -rw-r--r-- | lisp/gnus/pop3.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." | |||
| 385 | (pop3-send-command process (format "USER %s" user)) | 385 | (pop3-send-command process (format "USER %s" user)) |
| 386 | (let ((response (pop3-read-response process t))) | 386 | (let ((response (pop3-read-response process t))) |
| 387 | (if (not (and response (string-match "+OK" response))) | 387 | (if (not (and response (string-match "+OK" response))) |
| 388 | (error (format "USER %s not valid" user))))) | 388 | (error "USER %s not valid" user)))) |
| 389 | 389 | ||
| 390 | (defun pop3-pass (process) | 390 | (defun pop3-pass (process) |
| 391 | "Send authentication information to the server." | 391 | "Send authentication information to the server." |