commit | 9618a25b9c054f0ee4e267d2db96b6e7c113ed7a | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Dec 27 19:18:03 2020 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Dec 27 19:18:03 2020 +0100 |
tree | f9feec245acc80e076da032776154a4f2345dd24 | |
parent | e4862a0fe62261754daf476866ef2aa8586b716c [diff] [blame] |
patch 8.2.2232: compiler error for falling through into next case Problem: Compiler error for falling through into next case. Solution: Move FALLTHROUGH below the #endif
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index bb191b5..efbf9a3 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c
@@ -8653,9 +8653,8 @@ #ifdef FEAT_EVAL // "%%" alternate file off = 1; - // FALLTHROUGH #endif - + // FALLTHROUGH case SPEC_HASH: // '#' or "#99": alternate file if (off == 0 ? src[1] == '#' : src[2] == '%') {