aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/main.c
diff options
context:
space:
mode:
authorJan Edmund Lazo <janedmundlazo@hotmail.com>2018-09-20 23:57:06 -0400
committerJan Edmund Lazo <janedmundlazo@hotmail.com>2018-09-21 00:05:06 -0400
commit300a7a4cf464c32c9dfca577c4434060ab9d6ad2 (patch)
treea29fc79f06ba82c9086304b4697ee0800422e1a4 /src/nvim/main.c
parent6a329b05484a546b5ca6ed87cf355ad6f6007b8e (diff)
downloadrneovim-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/main.c')
-rw-r--r--src/nvim/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c
index 21620c04b4..192e7d2907 100644
--- a/src/nvim/main.c
+++ b/src/nvim/main.c
@@ -930,7 +930,8 @@ static void command_line_scan(mparm_T *parmp)
}
case 'M': { // "-M" no changes or writing of files
reset_modifiable();
- } // FALLTHROUGH
+ FALLTHROUGH;
+ }
case 'm': { // "-m" no writing of files
p_write = false;
break;