vim-patch:8.0.1726: older MSVC doesn't support declarations halfway a block

Problem:    Older MSVC doesn't support declarations halfway a block.
Solution:   Move the declaration back to the start of the block.
df2c774ded
This commit is contained in:
Jan Edmund Lazo
2019-06-16 19:52:56 -04:00
parent 315076a26d
commit 8bea8d7b47
4 changed files with 10 additions and 9 deletions

View File

@@ -6018,7 +6018,7 @@ static void ex_highlight(exarg_T *eap)
*/
void not_exiting(void)
{
exiting = FALSE;
exiting = false;
}
static bool before_quit_autocmds(win_T *wp, bool quit_all, int forceit)