# HG changeset patch # User Christian Brabandt # Date 1503083704 -7200 # Node ID ee8ead988f2c059b692983c39f02bdb23efd2f90 # Parent e5bb354c71771b4dd007e192eef86b614726c58d patch 8.0.0958: terminal test fails on Windows when winpty dll is missing commit https://github.com/vim/vim/commit/ea5d6fadbbba614e51e819cb537a3d52600bfcc5 Author: Bram Moolenaar Date: Fri Aug 18 21:07:11 2017 +0200 patch 8.0.0958: terminal test fails on Windows when winpty dll is missing Problem: The terminal test fails on MS-Windows when compiled with the terminal feature but the winpty DLL is missing. Solution: Check if the terminal feature works. (Ken Takata) diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim --- a/src/testdir/test_terminal.vim +++ b/src/testdir/test_terminal.vim @@ -1,6 +1,6 @@ " Tests for the terminal window. -if !exists('*term_start') +if !has('terminal') finish endif 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 */ /**/ + 958, +/**/ 957, /**/ 956,