Skip to content

Commit c35e4cb

Browse files
committed
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)
1 parent 1b9f9d3 commit c35e4cb

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

nsis/gvim.nsi

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,14 @@ Section "Vim executables and runtime files"
219219

220220
SetOutPath $0\macros
221221
File ${VIMRT}\macros\*.*
222+
SetOutPath $0\macros\hanoi
223+
File ${VIMRT}\macros\hanoi\*.*
224+
SetOutPath $0\macros\life
225+
File ${VIMRT}\macros\life\*.*
226+
SetOutPath $0\macros\maze
227+
File ${VIMRT}\macros\maze\*.*
228+
SetOutPath $0\macros\urm
229+
File ${VIMRT}\macros\urm\*.*
222230

223231
SetOutPath $0\pack\dist\opt\dvorak\dvorak
224232
File ${VIMRT}\pack\dist\opt\dvorak\dvorak\*.*

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,8 @@ static char *(features[]) =
769769

770770
static int included_patches[] =
771771
{ /* Add new patch number below this line */
772+
/**/
773+
1065,
772774
/**/
773775
1064,
774776
/**/

0 commit comments

Comments
 (0)