# HG changeset patch # User Bram Moolenaar # Date 1615897804 -3600 # Node ID 9433e10ce24202abc21b2a02b434e3fc8c571d68 # Parent 9b8ff833e1db7ef632958f64d52c2d2456ea1c63 patch 8.2.2609: test disabled on MS-Windows even though it should work Commit: https://github.com/vim/vim/commit/321481299757cdd43baeed33f4c5ba543fdfc7f7 Author: Bram Moolenaar Date: Tue Mar 16 13:23:30 2021 +0100 patch 8.2.2609: test disabled on MS-Windows even though it should work Problem: Test disabled on MS-Windows even though it should work. Solution: Restore the condition for skipping the test. (Ken Takata, closes #7970) diff --git a/src/testdir/test_startup.vim b/src/testdir/test_startup.vim --- a/src/testdir/test_startup.vim +++ b/src/testdir/test_startup.vim @@ -109,7 +109,9 @@ func Test_pack_in_rtp_when_plugins_run() endfunc func Test_help_arg() - CheckNotMSWindows + if !has('unix') && has('gui_running') + throw 'Skipped: does not work with gvim on MS-Windows' + endif if RunVim([], [], '--help >Xtestout') let lines = readfile('Xtestout') diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2609, +/**/ 2608, /**/ 2607,