From 300a7a4cf464c32c9dfca577c4434060ab9d6ad2 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Thu, 20 Sep 2018 23:57:06 -0400 Subject: replace fallthrough comment with macro Follow-up of vim-patch:8.0.1215 --- src/nvim/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/nvim/main.c') 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; -- cgit