0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

patch 7.4.2155

Problem:    Quotes make GUI test fail on MS-Windows.
Solution:   Remove quotes, strip white space.
This commit is contained in:
Bram Moolenaar 2016-08-04 21:21:13 +02:00
parent fe9489233c
commit 9d5b876d45
2 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -763,6 +763,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
2155,
/**/
2154,
/**/