# HG changeset patch # User Christian Brabandt # Date 1495613703 -7200 # Node ID 53f6d97b4e7736c43e699cf18f5be9cc36b5e552 # Parent e14cd10f19ae2803925809da0c8068f0b28a3d46 patch 8.0.0603: gF test fails on MS-Windows commit https://github.com/vim/vim/commit/d7aca7a71c7254501c08f04db1798df479df0e89 Author: Bram Moolenaar Date: Wed May 24 10:05:56 2017 +0200 patch 8.0.0603: gF test fails on MS-Windows Problem: gF test fails on MS-Windows. Solution: Use @ instead of : before the line number diff --git a/src/testdir/test_gf.vim b/src/testdir/test_gf.vim --- a/src/testdir/test_gf.vim +++ b/src/testdir/test_gf.vim @@ -38,7 +38,7 @@ func Test_gF() w! Xfile close new - call setline(1, ['one', 'Xfile:3', 'three']) + call setline(1, ['one', 'Xfile@3', 'three']) 2 call assert_fails('normal gF', 'E37:') call assert_equal(2, getcurpos()[1]) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 603, +/**/ 602, /**/ 601,