changeset 18207:f93c2b6f7167 v8.1.2098

patch 8.1.2098: mksession test fails on MS-Windows Commit: https://github.com/vim/vim/commit/37ac4a531ce58daa201e3e045ef553734eaa432a Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 28 19:29:04 2019 +0200 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.
author Bram Moolenaar <Bram@vim.org>
date Sat, 28 Sep 2019 19:30:03 +0200
parents 2ee349285451
children bc5f313b71ef
files src/testdir/test_mksession.vim src/version.c
diffstat 2 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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
--- a/src/version.c
+++ b/src/version.c
@@ -754,6 +754,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    2098,
+/**/
     2097,
 /**/
     2096,