Skip to content

Commit

Permalink
patch 8.0.0603: gF test fails on MS-Windows
Browse files Browse the repository at this point in the history
Problem:    gF test fails on MS-Windows.
Solution:   Use @ instead of : before the line number
  • Loading branch information
brammool committed May 24, 2017
1 parent 2a79ed2 commit d7aca7a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/testdir/test_gf.vim
Expand Up @@ -38,7 +38,7 @@ func Test_gF()
w! Xfile w! Xfile
close close
new new
call setline(1, ['one', 'Xfile:3', 'three']) call setline(1, ['one', 'Xfile@3', 'three'])
2 2
call assert_fails('normal gF', 'E37:') call assert_fails('normal gF', 'E37:')
call assert_equal(2, getcurpos()[1]) call assert_equal(2, getcurpos()[1])
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -764,6 +764,8 @@ static char *(features[]) =


static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
603,
/**/ /**/
602, 602,
/**/ /**/
Expand Down

0 comments on commit d7aca7a

Please sign in to comment.