# HG changeset patch # User Christian Brabandt # Date 1503142203 -7200 # Node ID e18b9d7d8d78478dd09dc1ef8a1135f28145f9ce # Parent 9ddc50ae2ff10f2217575044b563582fb61b235a patch 8.0.0961: the script to build the installer does not include winpty commit https://github.com/vim/vim/commit/98ebd2bbec3443878dd0ed772ab67efb618f2fad Author: Bram Moolenaar Date: Sat Aug 19 13:29:19 2017 +0200 patch 8.0.0961: the script to build the installer does not include winpty Problem: The script to build the installer does not include winpty. Solution: Add winpty32.dll and winpty-agent.exe like diff.exe diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi --- a/nsis/gvim.nsi +++ b/nsis/gvim.nsi @@ -191,13 +191,16 @@ Section "Vim executables and runtime fil File ${VIMSRC}\vimrun.exe File /oname=tee.exe ${VIMSRC}\teew32.exe File /oname=xxd.exe ${VIMSRC}\xxdw32.exe - File ${VIMTOOLS}\diff.exe File ${VIMRT}\vimtutor.bat File ${VIMRT}\README.txt File ..\uninstal.txt File ${VIMRT}\*.vim File ${VIMRT}\rgb.txt + File ${VIMTOOLS}\diff.exe + File ${VIMTOOLS}\winpty32.dll + File ${VIMTOOLS}\winpty-agent.exe + SetOutPath $0\colors File ${VIMRT}\colors\*.* 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 */ /**/ + 961, +/**/ 960, /**/ 959,