[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#21278: char-fold isearch: space and newline still broken
From: |
Eli Zaretskii |
Subject: |
bug#21278: char-fold isearch: space and newline still broken |
Date: |
Mon, 06 Sep 2021 08:59:36 +0300 |
> From: Richard Stallman <rms@gnu.org>
> Date: Sun, 05 Sep 2021 23:09:36 -0400
> Cc: 21278@debbugs.gnu.org, bruce.connor.am@gmail.com
>
> I am running master from May 11 and the failure still happens.
>
> I put this text from your message in my buffer:
>
> As far as I can tell, char-fold isearch doesn't conflate space and
> newline, so I guess that Artur's changes fixed this issue? But the bug
> report was left open, so I'm closing it now. If I misunderstood, please
> respond to the debbugs address and we'll reopen.
>
> I put point on "As far", a few lines above here, and type C-s and SPC.
> It finds the "and" at the end of the line together with the newline
> and spaces. This buffer is in Mail mode.
>
> However, when I insert the same text in *scratch*, the bug does not
> happen there.
I think that's because in Mail mode we have:
(char-syntax ?\n) => 32 ; SPC
whereas in *scratch*:
(char-syntax ?\n) => 62 ; >
And the regexp in search-whitespace-regexp is "\\s-+".
- bug#21278: char-fold isearch: space and newline, Lars Ingebrigtsen, 2021/09/04
- bug#21278: char-fold isearch: space and newline still broken, Richard Stallman, 2021/09/05
- bug#21278: char-fold isearch: space and newline still broken,
Eli Zaretskii <=
- bug#21278: char-fold isearch: space and newline still broken, Richard Stallman, 2021/09/06
- bug#21278: char-fold isearch: space and newline still broken, Eli Zaretskii, 2021/09/07
- bug#21278: char-fold isearch: space and newline still broken, Stefan Monnier, 2021/09/07
- bug#21278: char-fold isearch: space and newline still broken, Juri Linkov, 2021/09/09
- bug#21278: char-fold isearch: space and newline still broken, Lars Ingebrigtsen, 2021/09/10
- bug#21278: char-fold isearch: space and newline still broken, Eli Zaretskii, 2021/09/10
- bug#21278: char-fold isearch: space and newline still broken, Lars Ingebrigtsen, 2021/09/10
- bug#21278: char-fold isearch: space and newline still broken, Augusto Stoffel, 2021/09/10
- bug#21278: char-fold isearch: space and newline still broken, Kévin Le Gouguec, 2021/09/10
- bug#21278: char-fold isearch: space and newline still broken, Lars Ingebrigtsen, 2021/09/11