From: Eric Abrahamsen Date: Mon, 1 Nov 2021 01:01:15 +0000 (-0700) Subject: Don't have nntp-report signal an error X-Git-Tag: emacs-29.0.90~3671^2~65 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=032969e8c65ba1ccda8466f6c61f20e0c7293ebf;p=emacs.git Don't have nntp-report signal an error * lisp/gnus/nntp.el (nntp-report): This should behave as much as possible like nnheader-report, which only logs the error and returns nil. --- diff --git a/lisp/gnus/nntp.el b/lisp/gnus/nntp.el index 615a3c931bf..25289655bf2 100644 --- a/lisp/gnus/nntp.el +++ b/lisp/gnus/nntp.el @@ -331,9 +331,7 @@ retried once before actually displaying the error report." (when nntp-record-commands (nntp-record-command "*** CALLED nntp-report ***")) - (nnheader-report 'nntp args) - - (apply #'error args))) + (nnheader-report 'nntp args))) (defsubst nntp-copy-to-buffer (buffer start end) "Copy string from unibyte current buffer to multibyte buffer."