diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-03-23 15:13:05 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-03-23 15:13:05 +0100 |
commit | f7ff6e85e8a4e84cff023f5db4b66ef85986605a (patch) | |
tree | 813913a9c1d1418b5b85e3a4bc414dbeb2b3f6a3 /src/regexp_nfa.c | |
parent | a68783751647e3243ca6f22df62907efbdbccb02 (diff) | |
download | vim-git-f7ff6e85e8a4e84cff023f5db4b66ef85986605a.tar.gz |
updated for version 7.4.212v7.4.212
Problem: Now that the +visual feature is always enabled the #ifdefs for it
are not useful.
Solution: Remove the checks for FEAT_VISUAL.
Diffstat (limited to 'src/regexp_nfa.c')
-rw-r--r-- | src/regexp_nfa.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c index 787b34366..afcbed474 100644 --- a/src/regexp_nfa.c +++ b/src/regexp_nfa.c @@ -6403,14 +6403,12 @@ nfa_regmatch(prog, start, submatch, m) break; case NFA_VISUAL: -#ifdef FEAT_VISUAL result = reg_match_visual(); if (result) { add_here = TRUE; add_state = t->state->out; } -#endif break; case NFA_MOPEN1: |