diff options
author | Deepak Goel <deego@gnufans.org> | 2007-12-06 18:18:13 +0000 |
---|---|---|
committer | Deepak Goel <deego@gnufans.org> | 2007-12-06 18:18:13 +0000 |
commit | 26b4a51d1e6ef277c93f0d385d76a0fa9af69e7f (patch) | |
tree | df2fe9bd005e02fe2f82f269ce91a3e07c5781b5 /lisp/gnus/pop3.el | |
parent | 8c16bd8c3566df3b0cbbc28692a23a378604f423 (diff) | |
download | emacs-26b4a51d1e6ef277c93f0d385d76a0fa9af69e7f.tar.gz emacs-26b4a51d1e6ef277c93f0d385d76a0fa9af69e7f.tar.bz2 emacs-26b4a51d1e6ef277c93f0d385d76a0fa9af69e7f.zip |
Fix buggy calls to `error'.
Diffstat (limited to 'lisp/gnus/pop3.el')
-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 d152c2480ad..a48e8bc6cfe 100644 --- a/lisp/gnus/pop3.el +++ b/lisp/gnus/pop3.el @@ -314,7 +314,7 @@ Return the response string if optional second argument is non-nil." (setq match-end (point)) (goto-char pop3-read-point) (if (looking-at "-ERR") - (error (buffer-substring (point) (- match-end 2))) + (error "%s" (buffer-substring (point) (- match-end 2))) (if (not (looking-at "+OK")) (progn (setq pop3-read-point match-end) nil) (setq pop3-read-point match-end) |