emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Reverting e51adfbdb7?


From: Eric Abrahamsen
Subject: Re: Reverting e51adfbdb7?
Date: Fri, 14 Jun 2019 01:14:59 -0700
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux)

Stefan Monnier <address@hidden> writes:

>> Commit e51adfbdb7 makes it impossible for me to send *any* messages via
>> nntp, not just those with long continuation lines. I've been running
>> with a local reversion for several days now. Can it either be fixed soonish,
>> or reverted until a fix is ready?
>
> I'm trying the patch below right now,
>
>
>         Stefan
>
>
> diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el
> index 21c31f3244..86c4dce7d8 100644
> --- a/lisp/gnus/message.el
> +++ b/lisp/gnus/message.el
> @@ -5178,7 +5176,7 @@ message-check-news-header-syntax
>          (if (= (length errors) 1) "this" "these")
>          (if (= (length errors) 1) "" "s")
>          (mapconcat 'identity errors ", ")))))))
> -   (message--check-continuation-headers)
> +   (progn (message--check-continuation-headers) t)
>     ;; Check the Newsgroups & Followup-To headers for syntax errors.
>     (message-check 'valid-newsgroups
>       (let ((case-fold-search t)

Well that's certainly simpler than the patch I posted to the other
thread! I was trying to keep this clause looking similar to the other
clauses, to minimize mental overhead for the reader, but whatever works...




reply via email to

[Prev in Thread] Current Thread [Next in Thread]