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:
parent
fe9489233c
commit
9d5b876d45
@ -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
|
||||
|
@ -763,6 +763,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
2155,
|
||||
/**/
|
||||
2154,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user