summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-07-11 21:48:09 +0200
committerChristian Brabandt <cb@256bit.org>2024-07-11 21:48:09 +0200
commite7b98ab96e1f1bd12032c620615a2c69adbf018d (patch)
treea793f691a24793ef31b95f16a9b1bae2f3f3baab
parent7a22cb81415060215d28c1601a0b35755449bf87 (diff)
patch 9.1.0562: tests: inconsistency in test_findfile.vimv9.1.0562
Problem: tests: inconsistency in test_findfile.vim, it saves and restores 'shellslash', but doesn't actually set it Solution: Set shellslash explicitly (zeertzjq) closes: #15217 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
-rw-r--r--src/testdir/test_findfile.vim1
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/testdir/test_findfile.vim b/src/testdir/test_findfile.vim
index 20d5096132..311020e26d 100644
--- a/src/testdir/test_findfile.vim
+++ b/src/testdir/test_findfile.vim
@@ -133,6 +133,7 @@ func Test_finddir()
let save_shellslash = &shellslash
let save_dir = getcwd()
set path=,,
+ set shellslash
call CreateFiles()
cd Xfinddir1
diff --git a/src/version.c b/src/version.c
index 15fc77584d..39c29b0649 100644
--- a/src/version.c
+++ b/src/version.c
@@ -705,6 +705,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 562,
+/**/
561,
/**/
560,