emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/relint 2eba4d7 09/21: Describe new bol/eol/eos warnings


From: Mattias Engdegård
Subject: [elpa] externals/relint 2eba4d7 09/21: Describe new bol/eol/eos warnings
Date: Sun, 3 May 2020 11:13:36 -0400 (EDT)

branch: externals/relint
commit 2eba4d72e8592cd0891ee5652c5bdd323c72f5ea
Author: Mattias Engdegård <address@hidden>
Commit: Mattias Engdegård <address@hidden>

    Describe new bol/eol/eos warnings
---
 README | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/README b/README
index 7a355c4..777d9d0 100644
--- a/README
+++ b/README
@@ -133,6 +133,18 @@ skip-syntax-backward.
     the repeated sequence, resulting in a*\(?:c[ab]+\)* in the example
     above.
 
+  - End-of-line anchor followed by non-newline
+  - Non-newline followed by line-start anchor
+
+    A pattern that does not match a newline occurs right after an
+    end-of-line anchor ($) or before a line-start anchor (^).
+    This combination can never match.
+
+  - End-of-text anchor followed by non-empty pattern
+
+    A pattern that only matches a non-empty string occurs right after
+    an end-of-text anchor (\'). This combination can never match.
+
   - Uncounted repetition
 
     The construct A\{,\} repeats A zero or more times which was



reply via email to

[Prev in Thread] Current Thread [Next in Thread]