changeset 11571:bafb447104f6 v8.0.0668

patch 8.0.0668: nsis installer script does not work commit https://github.com/vim/vim/commit/a1bd86e0f2056f796390bc0cd3aba5c89513d0d2 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 24 15:11:01 2017 +0200 patch 8.0.0668: nsis installer script does not work Problem: Nsis installer script does not work. (Christian Brabandt) Solution: Fix the syntax of /SD.
author Christian Brabandt <cb@256bit.org>
date Sat, 24 Jun 2017 15:15:03 +0200
parents 62504e4ce7ba
children 4f9d321dbd2b
files nsis/gvim.nsi src/version.c
diffstat 2 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/nsis/gvim.nsi
+++ b/nsis/gvim.nsi
@@ -87,7 +87,8 @@ UninstPage instfiles
 Function .onInit
   MessageBox MB_YESNO|MB_ICONQUESTION \
 	"This will install Vim ${VER_MAJOR}.${VER_MINOR} on your computer.$\n Continue?" \
-	/SD IDYES NoAbort
+	/SD IDYES \
+	IDYES NoAbort
 	    Abort ; causes installer to quit.
 	NoAbort:
 
--- a/src/version.c
+++ b/src/version.c
@@ -765,6 +765,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    668,
+/**/
     667,
 /**/
     666,