# HG changeset patch # User Christian Brabandt # Date 1505675703 -7200 # Node ID 493752ef9f7597f00bbfba0fea1c55eabd222d2e # Parent a59b2335c38e32c7e63b30d170e180fdaeeaa1e9 patch 8.0.1121: can uncheck executables in MS-Windows installer commit https://github.com/vim/vim/commit/49150a41f86ff5c50de6d679168532682f49c672 Author: Bram Moolenaar Date: Sun Sep 17 21:00:03 2017 +0200 patch 8.0.1121: can uncheck executables in MS-Windows installer Problem: Can uncheck executables in MS-Windows installer. Solution: Make the choice read-only. (Ken Takata, closes https://github.com/vim/vim/issues/2106) diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi --- a/nsis/gvim.nsi +++ b/nsis/gvim.nsi @@ -179,7 +179,7 @@ FunctionEnd ########################################################## Section "Vim executables and runtime files" - SectionIn 1 2 3 + SectionIn 1 2 3 RO # we need also this here if the user changes the instdir StrCpy $0 "$INSTDIR\vim${VER_MAJOR}${VER_MINOR}" diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1121, +/**/ 1120, /**/ 1119,