# HG changeset patch # User Christian Brabandt # Date 1470582005 -7200 # Node ID 0470742f7346cd6216275e16bf468dad22733f30 # Parent c5a8f37bb077e81562b05b1cae0677b54555ef0c commit https://github.com/vim/vim/commit/e4a76ad0e74a31bbd9f1b1ac5b816d714d19a412 Author: Bram Moolenaar Date: Sun Aug 7 16:50:10 2016 +0200 patch 7.4.2179 Problem: Reading from stdin test fails on MS-Windows. Solution: Strip the extra space. 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 @@ -177,7 +177,8 @@ func Test_read_stdin() \ ] if RunVimPiped([], after, '-', 'echo something | ') let lines = readfile('Xtestout') - call assert_equal('something', lines[0]) + " MS-Windows adds a space after the word + call assert_equal(['something'], split(lines[0])) endif call delete('Xtestout') endfunc diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2179, +/**/ 2178, /**/ 2177,