Skip to content

Commit eb828d0

Browse files
committed
patch 8.0.0064
Problem: Normal test fails on MS-Windows. Solution: Don't try using an illegal file name.
1 parent 55952d4 commit eb828d0

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

src/testdir/test_normal.vim

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1248,10 +1248,12 @@ func! Test_normal23_K()
12481248
norm! K
12491249
call assert_equal('aa%bb', fnamemodify(bufname('%'), ':t'))
12501250
bwipe!
1251-
4
1252-
norm! K
1253-
call assert_equal('cc|dd', fnamemodify(bufname('%'), ':t'))
1254-
bwipe!
1251+
if !has('win32')
1252+
4
1253+
norm! K
1254+
call assert_equal('cc|dd', fnamemodify(bufname('%'), ':t'))
1255+
bwipe!
1256+
endif
12551257
set iskeyword-=%
12561258
set iskeyword-=\|
12571259

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+
64,
767769
/**/
768770
63,
769771
/**/

0 commit comments

Comments
 (0)