From 9e79ccbe9ce6fce18939c7ac2e5ad059a3bd1951 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 24 Jan 2019 15:57:30 +0100 Subject: [PATCH] patch 8.1.0807: session test fails on MS-Windows Problem: Session test fails on MS-Windows. Solution: Don't try creating file with illegal name. --- src/testdir/test_mksession.vim | 4 ++++ src/version.c | 2 ++ 2 files changed, 6 insertions(+) diff --git a/src/testdir/test_mksession.vim b/src/testdir/test_mksession.vim index 145c91cba..93a68ad0f 100644 --- a/src/testdir/test_mksession.vim +++ b/src/testdir/test_mksession.vim @@ -427,6 +427,10 @@ func Test_mksession_no_errmsg() endfunc func Test_mksession_quote_in_filename() + if !has('unix') + " only Unix can handle this weird filename + return + endif let v:errmsg = '' %bwipe! split another diff --git a/src/version.c b/src/version.c index 509541dff..da4b43c77 100644 --- a/src/version.c +++ b/src/version.c @@ -791,6 +791,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 807, /**/ 806, /**/ -- 2.50.1