diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-20 23:42:23 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-21 00:05:06 -0400 |
commit | 01b2fa53f4593024437f5df25b7744b16b164e4f (patch) | |
tree | 16bc5fa1f461139f25ee67dcca7cfa5acbb92bdd /src/nvim/regexp_nfa.c | |
parent | 300a7a4cf464c32c9dfca577c4434060ab9d6ad2 (diff) | |
download | rneovim-01b2fa53f4593024437f5df25b7744b16b164e4f.tar.gz rneovim-01b2fa53f4593024437f5df25b7744b16b164e4f.tar.bz2 rneovim-01b2fa53f4593024437f5df25b7744b16b164e4f.zip |
lint
Diffstat (limited to 'src/nvim/regexp_nfa.c')
-rw-r--r-- | src/nvim/regexp_nfa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/regexp_nfa.c b/src/nvim/regexp_nfa.c index 854e7f9881..65ddcf3b07 100644 --- a/src/nvim/regexp_nfa.c +++ b/src/nvim/regexp_nfa.c @@ -1220,7 +1220,7 @@ static int nfa_regatom(void) if (c == '[') goto collection; - /* "\_x" is character class plus newline */ + // "\_x" is character class plus newline FALLTHROUGH; /* @@ -3256,7 +3256,7 @@ static nfa_state_T *post2nfa(int *postfix, int *end, int nfa_calc_size) break; } - case NFA_COMPOSING: /* char with composing char */ + case NFA_COMPOSING: // char with composing char FALLTHROUGH; case NFA_MOPEN: /* \( \) Submatch */ |