changeset 12942:914fbd1d269f v8.0.1347

patch 8.0.1347: MS-Windows: build broken by misplaced curly commit https://github.com/vim/vim/commit/e0aa23f7e3cc389251ecb3266926ac7d83056b1b Author: Bram Moolenaar <Bram@vim.org> Date: Sun Nov 26 17:08:03 2017 +0100 patch 8.0.1347: MS-Windows: build broken by misplaced curly Problem: MS-Windows: build broken by misplaced curly. Solution: Move curly after #endif
author Christian Brabandt <cb@256bit.org>
date Sun, 26 Nov 2017 17:15:05 +0100
parents c9bec4e3805f
children 7a11b4c0e912
files src/ex_cmds.c src/version.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -2052,8 +2052,8 @@ write_viminfo(char_u *file, int forceit)
 		/* can't stat the file, set conservative permissions */
 		(void)mch_setperm(tempname, 0600);
 	}
-    }
-#endif
+#endif
+    }
 
     /*
      * Check if the new viminfo file can be written to.
--- a/src/version.c
+++ b/src/version.c
@@ -772,6 +772,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1347,
+/**/
     1346,
 /**/
     1345,