]> git.eshelyaron.com Git - emacs.git/commit
(mutually_exclusive_p): Fix the regression from commit 6fad73d7cc53
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 15 Sep 2023 18:44:59 +0000 (14:44 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 15 Sep 2023 18:53:24 +0000 (14:53 -0400)
commite7e925f062f8d50375daa40ad7981c6d44cd7f05
tree8be3c2e7de3a432c72dc55ab89c24b3e23f2ab4e
parent9610aaeb9e5f3d572616f0742fca2f5e5abc141d
(mutually_exclusive_p): Fix the regression from commit 6fad73d7cc53

Commit 6fad73d7cc53 throws away some useful optimization because
it misfired in some cases (as seen in bug#657260).  Here we try to
recover those useful optimizations with a slightly more careful
algorithm.

* src/regex-emacs.c (mutually_exclusive_aux): Rename from
`mutually_exclusive_p`.  Add two new args.  Improve the
case where we need to recurse.
(mutually_exclusive_p): New function defined on top of it.

* test/src/regex-emacs-tests.el (regexp-tests-backtrack-optimization):
Re-enable the test.
src/regex-emacs.c
test/src/regex-emacs-tests.el