From 622bfdffa8b0c830bc6a979a2e9c114bad1ac114 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 14 Jun 2019 02:51:07 -0400 Subject: [PATCH] * lisp/gnus/message.el: Fix NNTP sending, broken by e51adfbdb7 (message-check-news-header-syntax): `message--check-continuation-headers` signals an error instead of returning nil on error. --- lisp/gnus/message.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 9ce35cece47..986567faa1f 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el @@ -5165,8 +5165,8 @@ Otherwise, generate and save a value for `canlock-password' first." "Really post to %s unknown group%s: %s? " (if (= (length errors) 1) "this" "these") (if (= (length errors) 1) "" "s") - (mapconcat 'identity errors ", "))))))) - (message--check-continuation-headers) + (mapconcat #'identity errors ", "))))))) + (progn (message--check-continuation-headers) t) ;; Check the Newsgroups & Followup-To headers for syntax errors. (message-check 'valid-newsgroups (let ((case-fold-search t) -- 2.39.5