]> git.eshelyaron.com Git - emacs.git/commitdiff
; * test/src/regex-emacs-tests.el: suppress relint complaints
authorMattias Engdegård <mattiase@acm.org>
Wed, 27 Sep 2023 10:41:15 +0000 (12:41 +0200)
committerMattias Engdegård <mattiase@acm.org>
Wed, 27 Sep 2023 10:45:43 +0000 (12:45 +0200)
test/src/regex-emacs-tests.el

index c84998e11845258c45404c5469f1a719b09d841f..d78f70ba409cf034795e5ce1c1f94d77c6f01579 100644 (file)
@@ -884,13 +884,21 @@ This evaluates the TESTS test cases from glibc."
     (should (looking-at "x*\\(=\\|:\\)"))
     (should (looking-at "x*\\(=\\|:\\)*"))
     (should (looking-at "x*=*?"))
+    ;; relint suppression: Repetition of expression matching an empty string
     (should (looking-at "x*\\(=*\\|h\\)*?"))
+    ;; relint suppression: Repetition of expression matching an empty string
     (should (looking-at "x*\\(=*\\|h\\)*"))
+    ;; relint suppression: Repetition of expression matching an empty string
     (should (looking-at "x*\\(=*?\\|h\\)*"))
+    ;; relint suppression: Repetition of expression matching an empty string
     (should (looking-at "x*\\(=*?\\|h\\)*?"))
+    ;; relint suppression: Repetition of expression matching an empty string
     (should (looking-at "x*\\(=*\\|h\\)+?"))
+    ;; relint suppression: Repetition of expression matching an empty string
     (should (looking-at "x*\\(=*\\|h\\)+"))
+    ;; relint suppression: Repetition of expression matching an empty string
     (should (looking-at "x*\\(=*?\\|h\\)+"))
+    ;; relint suppression: Repetition of expression matching an empty string
     (should (looking-at "x*\\(=*?\\|h\\)+?"))
     (should (looking-at "x*\\(=+\\|h\\)+?"))
     (should (looking-at "x*\\(=+\\|h\\)+"))