[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Quilt-dev] [PATCH] mail: Unbreak threading
From: |
Thomas Gleixner |
Subject: |
Re: [Quilt-dev] [PATCH] mail: Unbreak threading |
Date: |
Tue, 5 Jun 2018 13:37:40 +0200 (CEST) |
User-agent: |
Alpine 2.21 (DEB 202 2017-01-01) |
On Tue, 5 Jun 2018, Jean Delvare wrote:
> Hello Thomas,
>
> On Tue, 5 Jun 2018 01:26:04 +0200 (CEST), Thomas Gleixner wrote:
> > (...) commit 360b85e1 fixes absolutely nothing because
> > it merily adds -n to the sed invocation (...)
>
> Really?
>
> - sed -n "/^${header}/,/^[^[:blank:]]/ { /^${header}/ { s/^${header}//p;
> n; }; /^[^[:blank:]]/q; /^$/q; p; }"
> + sed -ne "/^${header}/I,/^[^[:blank:]]/ { /^${header}/I {
> s/^${header}//I; p; n; }; /^[^[:blank:]]/q; /^$/q; p; }"
Ooops. Tired brain missed the 'I' addition.
So, yes the patch fixes it. Sorry for the noise.
Thanks,
tglx