]> git.eshelyaron.com Git - emacs.git/commit
Straighten regexp postfix operator after zero-width assertion parse
authorMattias Engdegård <mattiase@acm.org>
Tue, 20 Jun 2023 10:12:50 +0000 (12:12 +0200)
committerMattias Engdegård <mattiase@acm.org>
Wed, 21 Jun 2023 16:00:26 +0000 (18:00 +0200)
commitbe91192ecb1e0dff794582cd463f0a6480d160ef
tree156031723d39088ce4e2dd52a3a7b7068fbc5880
parentdae8aab52874441a70a94435d50f25b27301d9b0
Straighten regexp postfix operator after zero-width assertion parse

The zero-width assertions \` \' \b \B were parsed in a sloppy way so
that a following postfix repetition operator could yield surprising
results.  For instance, "\\b*" would act as "\\b\\*", and "xy\\b*"
would act as "\\(?:xy\\b\\)*".

Except for \` and ^, any following postfix operator now applies to the
zero-width assertion itself only, which is predictable and consistent
with other assertions, if useless in practice.
For historical compatibility, an operator character following \` and ^
always becomes a literal. (Bug#64128)

* src/regex-emacs.c (regex_compile):
Set `laststart` appropriately for each zero-width assertion instead
of leaving it with whatever value it had before.
Remove a redundant condition.
* test/src/regex-emacs-tests.el
(regexp-tests-zero-width-assertion-repetition): New test.
* doc/lispref/searching.texi (Regexp Special):
Say that repetition operators are not special after \`,
and that they work as expected after other backslash escapes.
* etc/NEWS: Announce.
doc/lispref/searching.texi
etc/NEWS
src/regex-emacs.c
test/src/regex-emacs-tests.el