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/regexp.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/regexp.c')
-rw-r--r-- | src/nvim/regexp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/regexp.c b/src/nvim/regexp.c index 292e0ea7a2..1c63654b49 100644 --- a/src/nvim/regexp.c +++ b/src/nvim/regexp.c @@ -2420,7 +2420,7 @@ collection: } else if (reg_strict) EMSG2_RET_NULL(_(e_missingbracket), reg_magic > MAGIC_OFF); } - /* FALLTHROUGH */ + FALLTHROUGH; default: { |