diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-20 23:57:06 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-21 00:05:06 -0400 |
commit | 300a7a4cf464c32c9dfca577c4434060ab9d6ad2 (patch) | |
tree | a29fc79f06ba82c9086304b4697ee0800422e1a4 /src/nvim/spell.c | |
parent | 6a329b05484a546b5ca6ed87cf355ad6f6007b8e (diff) | |
download | rneovim-300a7a4cf464c32c9dfca577c4434060ab9d6ad2.tar.gz rneovim-300a7a4cf464c32c9dfca577c4434060ab9d6ad2.tar.bz2 rneovim-300a7a4cf464c32c9dfca577c4434060ab9d6ad2.zip |
replace fallthrough comment with macro
Follow-up of vim-patch:8.0.1215
Diffstat (limited to 'src/nvim/spell.c')
-rw-r--r-- | src/nvim/spell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/spell.c b/src/nvim/spell.c index 776445cfc1..518bd0922e 100644 --- a/src/nvim/spell.c +++ b/src/nvim/spell.c @@ -4726,7 +4726,7 @@ static void suggest_trie_walk(suginfo_T *su, langp_T *lp, char_u *fword, bool so PROF_STORE(sp->ts_state) sp->ts_state = STATE_REP; - // FALLTHROUGH + FALLTHROUGH; case STATE_REP: // Try matching with REP items from the .aff file. For each match |