; Suppress relint complaint in test

* test/src/regex-emacs-tests.el
(regex-tests-mutual-exclusive-inf-rec): This isn't supposed to be a
good regexp.
This commit is contained in:
Mattias Engdegård 2023-09-10 15:15:12 +02:00
parent 90b8762ac8
commit b6032f0fe4

View file

@ -968,6 +968,7 @@ This evaluates the TESTS test cases from glibc."
(ert-deftest regex-tests-mutual-exclusive-inf-rec ()
;; Regression test for bug#65726, where this crashed Emacs.
;; relint suppression: Repetition of expression matching an empty string
(should (equal (string-match "a*\\(?:c\\|b*\\)*" "a") 0)))
;;; regex-emacs-tests.el ends here