# HG changeset patch # User Christian Brabandt # Date 1504727104 -7200 # Node ID 55359dabb6cc64d9d33e37e0cf329d0349676d62 # Parent 3ff706eb6066b438113058b74dcd184da5c547c3 patch 8.0.1065: not all macro examples are included commit https://github.com/vim/vim/commit/c35e4cb4fe3ce524d15ac9fdc9a8aa923761bdfd Author: Bram Moolenaar Date: Wed Sep 6 21:43:10 2017 +0200 patch 8.0.1065: not all macro examples are included Problem: Not all macro examples are included in the self-installing executable. (lkintact) Solution: Add the directories to the NSIS script. (closes #2065) diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi --- a/nsis/gvim.nsi +++ b/nsis/gvim.nsi @@ -219,6 +219,14 @@ Section "Vim executables and runtime fil SetOutPath $0\macros File ${VIMRT}\macros\*.* + SetOutPath $0\macros\hanoi + File ${VIMRT}\macros\hanoi\*.* + SetOutPath $0\macros\life + File ${VIMRT}\macros\life\*.* + SetOutPath $0\macros\maze + File ${VIMRT}\macros\maze\*.* + SetOutPath $0\macros\urm + File ${VIMRT}\macros\urm\*.* SetOutPath $0\pack\dist\opt\dvorak\dvorak File ${VIMRT}\pack\dist\opt\dvorak\dvorak\*.* diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1065, +/**/ 1064, /**/ 1063,