# HG changeset patch # User Christian Brabandt # Date 1470339007 -7200 # Node ID 96667173293ddd6f4c7ca9f78b7526ad8e733564 # Parent 0084e5d3475058cadb20956a5fb3a2c3bda2af29 commit https://github.com/vim/vim/commit/9d5b876d458e242b8b5e44da10c5cdc6bbb7f57c Author: Bram Moolenaar Date: Thu Aug 4 21:21:13 2016 +0200 patch 7.4.2155 Problem: Quotes make GUI test fail on MS-Windows. Solution: Remove quotes, strip white space. diff --git a/src/testdir/test_gui.vim b/src/testdir/test_gui.vim --- a/src/testdir/test_gui.vim +++ b/src/testdir/test_gui.vim @@ -21,8 +21,8 @@ endfunc func Test_shell_command() new - r !echo 'hello' - call assert_equal('hello', getline(2)) + r !echo hello + call assert_equal('hello', substitute(getline(2), '\W', '', 'g')) bwipe! call assert_true(1, match(execute('winpos'), 'Window position: X \d\+, Y \d\+') >= 0) 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 */ /**/ + 2155, +/**/ 2154, /**/ 2153,