]> git.eshelyaron.com Git - emacs.git/commit
* src/regex-emacs.c (regex_compile): Remove useless condition
authorMattias Engdegård <mattiase@acm.org>
Mon, 19 Jun 2023 08:25:15 +0000 (10:25 +0200)
committerMattias Engdegård <mattiase@acm.org>
Mon, 19 Jun 2023 08:37:22 +0000 (10:37 +0200)
commit075e77ac449386c07a4b90e052d1bef7c6a38771
treed1760e3c6585b5b0405f517af64046b751915261
parentedb0862f5e69240de90c30b8914af51778f26d31
* src/regex-emacs.c (regex_compile): Remove useless condition

This condition didn't have any visible effect (as ^ is not a
repetition operator); all it did was to generate slightly worse regexp
bytecode for out-of-place (literal) ^ in the midst of literal
characters (bug#64128).
src/regex-emacs.c