diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-09-21 08:20:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-21 08:20:20 +0200 |
commit | ad6bbe44683cf936ec2268ee89e8e1c22f538ecc (patch) | |
tree | e639cb06834f05b90d513dd8f67a3a7191082543 /src/nvim/regexp_nfa.c | |
parent | e55ebae3734068239c7070dd20ddc34b06c20a7c (diff) | |
parent | 01b2fa53f4593024437f5df25b7744b16b164e4f (diff) | |
download | rneovim-ad6bbe44683cf936ec2268ee89e8e1c22f538ecc.tar.gz rneovim-ad6bbe44683cf936ec2268ee89e8e1c22f538ecc.tar.bz2 rneovim-ad6bbe44683cf936ec2268ee89e8e1c22f538ecc.zip |
Merge #9022 from janlazo/vim-8.0.1215
Diffstat (limited to 'src/nvim/regexp_nfa.c')
-rw-r--r-- | src/nvim/regexp_nfa.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/nvim/regexp_nfa.c b/src/nvim/regexp_nfa.c index 5b58003047..65ddcf3b07 100644 --- a/src/nvim/regexp_nfa.c +++ b/src/nvim/regexp_nfa.c @@ -1220,8 +1220,8 @@ static int nfa_regatom(void) if (c == '[') goto collection; - /* "\_x" is character class plus newline */ - /*FALLTHROUGH*/ + // "\_x" is character class plus newline + FALLTHROUGH; /* * Character classes. @@ -1801,7 +1801,7 @@ collection: if (reg_strict) EMSG_RET_FAIL(_(e_missingbracket)); - /* FALLTHROUGH */ + FALLTHROUGH; default: { @@ -3256,8 +3256,8 @@ static nfa_state_T *post2nfa(int *postfix, int *end, int nfa_calc_size) break; } - case NFA_COMPOSING: /* char with composing char */ - /* FALLTHROUGH */ + case NFA_COMPOSING: // char with composing char + FALLTHROUGH; case NFA_MOPEN: /* \( \) Submatch */ case NFA_MOPEN1: @@ -3986,7 +3986,7 @@ addstate ( || !REG_MULTI || reglnum == nfa_endp->se_u.pos.lnum)) goto skip_add; - /* FALLTHROUGH */ + FALLTHROUGH; case NFA_MOPEN1: case NFA_MOPEN2: @@ -4209,7 +4209,7 @@ skip_add: subs = addstate(l, state->out, subs, pim, off_arg); break; } - // fallthrough + FALLTHROUGH; case NFA_MCLOSE1: case NFA_MCLOSE2: case NFA_MCLOSE3: |