# HG changeset patch # User Bram Moolenaar # Date 1548342008 -3600 # Node ID 9da8ae285a02cebaded6756af8528db9b0e28b24 # Parent 836c2c11c43d5d244417ffa99b766e7bd4b8ecdc patch 8.1.0807: session test fails on MS-Windows commit https://github.com/vim/vim/commit/9e79ccbe9ce6fce18939c7ac2e5ad059a3bd1951 Author: Bram Moolenaar Date: Thu Jan 24 15:57:30 2019 +0100 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. diff --git a/src/testdir/test_mksession.vim b/src/testdir/test_mksession.vim --- 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 --- a/src/version.c +++ b/src/version.c @@ -792,6 +792,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 807, +/**/ 806, /**/ 805,