mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
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
This commit is contained in:
parent
e4862a0fe6
commit
9618a25b9c
@ -8653,9 +8653,8 @@ eval_vars(
|
|||||||
#ifdef FEAT_EVAL
|
#ifdef FEAT_EVAL
|
||||||
// "%%" alternate file
|
// "%%" alternate file
|
||||||
off = 1;
|
off = 1;
|
||||||
// FALLTHROUGH
|
|
||||||
#endif
|
#endif
|
||||||
|
// FALLTHROUGH
|
||||||
case SPEC_HASH: // '#' or "#99": alternate file
|
case SPEC_HASH: // '#' or "#99": alternate file
|
||||||
if (off == 0 ? src[1] == '#' : src[2] == '%')
|
if (off == 0 ? src[1] == '#' : src[2] == '%')
|
||||||
{
|
{
|
||||||
|
@ -750,6 +750,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
2232,
|
||||||
/**/
|
/**/
|
||||||
2231,
|
2231,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user