diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-02-08 22:45:17 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-02-08 22:45:17 +0100 |
commit | dff72ba4459f54cac2ce40eea3d92097660c7b9f (patch) | |
tree | 3df0f47369fd1d1ce5cbf89a893619f3fc451683 /src/regexp_nfa.c | |
parent | d317b38a4dbcdbd4cf587cf78cc1f4289374214e (diff) | |
download | vim-git-dff72ba4459f54cac2ce40eea3d92097660c7b9f.tar.gz |
patch 8.0.1478: unnecessary conditionv8.0.1478
Problem: Unnecessary condition for "len" being zero.
Solution: Remove the condition. (Dominique Pelle)
Diffstat (limited to 'src/regexp_nfa.c')
-rw-r--r-- | src/regexp_nfa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c index 43fe5dc4d..70003a05b 100644 --- a/src/regexp_nfa.c +++ b/src/regexp_nfa.c @@ -6183,7 +6183,7 @@ nfa_regmatch( { /* If \Z was present, then ignore composing characters. * When ignoring the base character this always matches. */ - if (len == 0 && sta->c != curc) + if (sta->c != curc) result = FAIL; else result = OK; |