From: zeertzjq Date: Thu, 2 Jul 2026 20:35:25 +0000 (+0000) Subject: patch 9.2.0781: tests: Test_fuzzy_completion_bufname_fullpath() creates unnecessary dir X-Git-Tag: v9.2.0781^0 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=98efa502798d09d828d5b6f48854145549ab060e;p=thirdparty%2Fvim.git patch 9.2.0781: tests: Test_fuzzy_completion_bufname_fullpath() creates unnecessary dir Problem: tests: Test_fuzzy_completion_bufname_fullpath() creates an unnecessary directory with the name of a file. Solution: Only create the parent directory of the file (zeertzjq). closes: #20695 Signed-off-by: zeertzjq Signed-off-by: Christian Brabandt --- diff --git a/src/testdir/test_cmdline.vim b/src/testdir/test_cmdline.vim index 9c34e81499..ef1cd7adcd 100644 --- a/src/testdir/test_cmdline.vim +++ b/src/testdir/test_cmdline.vim @@ -3601,7 +3601,7 @@ endfunc func Test_fuzzy_completion_bufname_fullpath() CheckUnix set wildoptions& - call mkdir('Xcmd/Xstate/Xfile.js', 'pR') + call mkdir('Xcmd/Xstate', 'pR') edit Xcmd/Xstate/Xfile.js cd Xcmd/Xstate enew diff --git a/src/version.c b/src/version.c index 27c2bfe527..7306ff970e 100644 --- a/src/version.c +++ b/src/version.c @@ -759,6 +759,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 781, /**/ 780, /**/