changeset 31265:a7cc6caf1947 v9.0.0966

patch 9.0.0966: some compilers don't allow a declaration after a label Commit: https://github.com/vim/vim/commit/f86490ed4fdab213a28f667abd055c023a73d645 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Nov 28 19:11:02 2022 +0000 patch 9.0.0966: some compilers don't allow a declaration after a label Problem: Some compilers don't allow a declaration after a label. Solution: Move the declaration to the start of the block. (John Marriott)
author Bram Moolenaar <Bram@vim.org>
date Mon, 28 Nov 2022 20:15:03 +0100
parents a79a8c911704
children b8d4a1feae68
files src/screen.c src/version.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/screen.c
+++ b/src/screen.c
@@ -2383,6 +2383,7 @@ screenalloc(int doclear)
     static int	    entered = FALSE;		// avoid recursiveness
     static int	    done_outofmem_msg = FALSE;	// did outofmem message
     int		    retry_count = 0;
+    int		    found_null;
 
 retry:
     /*
@@ -2509,8 +2510,7 @@ retry:
 #endif
 
 give_up:
-
-    int found_null = FALSE;
+    found_null = FALSE;
     for (int i = 0; i < p_mco; ++i)
 	if (new_ScreenLinesC[i] == NULL)
 	{
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    966,
+/**/
     965,
 /**/
     964,