diff options
author | Eli Zaretskii <eliz@gnu.org> | 2023-05-11 12:59:46 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2023-05-11 12:59:46 +0300 |
commit | b8bcd42cabc8e2d69359402dacd3e51fe75029db (patch) | |
tree | f8a6487413ff31721a5bb40a5ccf50dd480a334b /lisp/gnus | |
parent | ef1f4068f6f9d614324db88e6dcc1c2b67362bde (diff) | |
download | emacs-b8bcd42cabc8e2d69359402dacd3e51fe75029db.tar.gz emacs-b8bcd42cabc8e2d69359402dacd3e51fe75029db.tar.bz2 emacs-b8bcd42cabc8e2d69359402dacd3e51fe75029db.zip |
Revert "Don't have nntp-report signal an error"
This reverts commit 032969e8c65ba1ccda8466f6c61f20e0c7293ebf.
The commit is being reverted because it caused bug#62845.
Diffstat (limited to 'lisp/gnus')
-rw-r--r-- | lisp/gnus/nntp.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/gnus/nntp.el b/lisp/gnus/nntp.el index 20c176f2269..3c56f0667b7 100644 --- a/lisp/gnus/nntp.el +++ b/lisp/gnus/nntp.el @@ -314,7 +314,9 @@ retried once before actually displaying the error report." (when nntp-record-commands (nntp-record-command "*** CALLED nntp-report ***")) - (nnheader-report 'nntp args))) + (nnheader-report 'nntp args) + + (apply #'error args))) (defsubst nntp-copy-to-buffer (buffer start end) "Copy string from unibyte current buffer to multibyte buffer." |