]> git.eshelyaron.com Git - emacs.git/commit
Fix regexp character class syntax property ghost matching bug
authorMattias Engdegård <mattiase@acm.org>
Sat, 22 Jul 2023 15:26:11 +0000 (17:26 +0200)
committerMattias Engdegård <mattiase@acm.org>
Sat, 22 Jul 2023 16:26:57 +0000 (18:26 +0200)
commit5d2d28458d0eb378a7e94363ef716e8648ef129a
treef2ca6c379a81372444e2b5841c12cef7c84f6ed3
parentcfdce1a19fa8a845b78e535b510932df945598ad
Fix regexp character class syntax property ghost matching bug

The syntax-table-dependent regexp character classes [:space:],
[:word:] and [:punct:] always use the buffer-local syntax table for
performance reasons.  Fix a bug that could cause ghost (mis)matches
from use of lingering state by constructs that do use syntax
properties, such as `\sX`.

* src/regex-emacs.c (BUFFER_SYNTAX): New macro.
(ISPUNCT, ISSPACE, ISWORD): Use BUFFER_SYNTAX instead of SYNTAX.
(regex_compile): Delete syntax table setup code that is no longer
needed.
* test/src/regex-emacs-tests.el (regex-emacs-syntax-properties):
New regression test.
src/regex-emacs.c
test/src/regex-emacs-tests.el