From: Marcin Borkowski <mbork@amu.edu.pl>
To: Alan Mackenzie <acm@muc.de>
Cc: 19873@debbugs.gnu.org
Subject: bug#19873: Ill-formed regular expression is constructed in forward-paragraph.
Date: Sun, 26 Feb 2017 17:44:51 +0100 [thread overview]
Message-ID: <87o9xodhq4.fsf@jane> (raw)
In-Reply-To: <20150215103122.GA3282@acm.fritz.box> (Alan Mackenzie's message of "Sun, 15 Feb 2015 10:31:22 +0000")
On 2015-02-15, at 10:31, Alan Mackenzie <acm@muc.de> wrote:
> Hello, Emacs!
>
> In forward-paragraph, L37, a regular expression is constructed as
> follows:
>
> (let* ...
> (sp-parstart (concat "^[ \t]*\\(?:" parstart "\\|" parsep "\\)"))
> ...)
>
> . Here parstart and parsep are, more or less,
> paragraph-{start,separate}.
>
> The problem is that parstart and parsep themselves are likely to begin
> with "[ \t]*" (the default values certainly do), so we have two
> consecutive matchers for an arbitrary amount of whitespace. This causes
> the regexp engine to run very slowly when a line starts with lots of WS
> but doesn't match.
>
> This problem seems to be the cause of bug # 19846 (where holding down the
> spacebar inside a C comment causes Emacs to seize up when auto-fill mode
> is enabled).
Hi Alan, hi all,
I put this bug on my todo-list some time ago and decided now to revisit
it.
I'm wondering what could be done about it. First of all, my Emacs has
this as paragraph-start:
"\f\\|[ ]*$"
and this as paragraph-separate:
"[ \f]*$"
and frankly speaking, I'm not sure why they differ at all (by default).
Also, even though forward-paragraph checks for "^" at their beginning,
they actually don't begin with that character (again, by default).
My first thought is to add a check whether paragraph-start and
paragraph-sep match something like
"^\\^?\\[[[:space:]]+\\][+*]?"
and if yes, make parstart/parsep equal to them, but without the matching
part.
WDYT?
--
Marcin Borkowski
http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski
Faculty of Mathematics and Computer Science
Adam Mickiewicz University
next prev parent reply other threads:[~2017-02-26 16:44 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-15 10:31 bug#19873: Ill-formed regular expression is constructed in forward-paragraph Alan Mackenzie
2017-02-26 16:44 ` Marcin Borkowski [this message]
2017-02-26 16:57 ` Eli Zaretskii
2017-02-26 18:48 ` Marcin Borkowski
2017-03-07 16:47 ` Eli Zaretskii
2017-03-09 21:04 ` Alan Mackenzie
2021-12-02 10:39 ` Lars Ingebrigtsen
2021-12-02 10:44 ` Lars Ingebrigtsen
2021-12-02 11:17 ` Lars Ingebrigtsen
2021-12-02 20:45 ` Alan Mackenzie
2021-12-03 16:15 ` Lars Ingebrigtsen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87o9xodhq4.fsf@jane \
--to=mbork@amu.edu.pl \
--cc=19873@debbugs.gnu.org \
--cc=acm@muc.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.