From: Bram Moolenaar Date: Sat, 28 Sep 2019 17:29:04 +0000 (+0200) Subject: patch 8.1.2098: mksession test fails on MS-Windows X-Git-Tag: v8.1.2098 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=37ac4a531ce58daa201e3e045ef553734eaa432a;p=vim patch 8.1.2098: mksession test fails on MS-Windows Problem: mksession test fails on MS-Windows. Solution: Skip testing with backslashes on MS-Windows. --- diff --git a/src/testdir/test_mksession.vim b/src/testdir/test_mksession.vim index 168ced473..7af5652c2 100644 --- a/src/testdir/test_mksession.vim +++ b/src/testdir/test_mksession.vim @@ -565,6 +565,9 @@ endfunc " Test for changing backslash to forward slash in filenames func Test_mksession_slash() + if exists('+shellslash') + throw 'Skipped: cannot use backslash in file name' + endif enew %bwipe! e a\\b\\c diff --git a/src/version.c b/src/version.c index 736a632ff..20a028515 100644 --- a/src/version.c +++ b/src/version.c @@ -753,6 +753,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2098, /**/ 2097, /**/