Skip to content

Commit d7aca7a

Browse files
committed
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
1 parent 2a79ed2 commit d7aca7a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/testdir/test_gf.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func Test_gF()
3838
w! Xfile
3939
close
4040
new
41-
call setline(1, ['one', 'Xfile:3', 'three'])
41+
call setline(1, ['one', 'Xfile@3', 'three'])
4242
2
4343
call assert_fails('normal gF', 'E37:')
4444
call assert_equal(2, getcurpos()[1])

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
603,
767769
/**/
768770
602,
769771
/**/

0 commit comments

Comments
 (0)