# HG changeset patch # User Bram Moolenaar # Date 1609093803 -3600 # Node ID 8e956ea07bb27d11e581c7e83d28f90e39b590f4 # Parent 9ab713bd803a48b8b4e4eceb15a0029e9b879421 patch 8.2.2232: compiler error for falling through into next case Commit: https://github.com/vim/vim/commit/9618a25b9c054f0ee4e267d2db96b6e7c113ed7a Author: Bram Moolenaar Date: Sun Dec 27 19:18:03 2020 +0100 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 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -8653,9 +8653,8 @@ eval_vars( #ifdef FEAT_EVAL // "%%" alternate file off = 1; +#endif // FALLTHROUGH -#endif - case SPEC_HASH: // '#' or "#99": alternate file if (off == 0 ? src[1] == '#' : src[2] == '%') { diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2232, +/**/ 2231, /**/ 2230,