From: Christian Brabandt Date: Thu, 2 Jul 2026 06:12:32 +0000 (+0200) Subject: patch 9.2.0763: tests: style issue in test_plugin_netrw X-Git-Tag: v9.2.0763^0 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1ebd2fdb78ead0f46dd049f39c3d4cfef951dad8;p=thirdparty%2Fvim.git patch 9.2.0763: tests: style issue in test_plugin_netrw Problem: tests: style issue in test_plugin_netrw (after v9.2.0761) Solution: Clean-up newly created directory, use consistent concat operator Signed-off-by: Christian Brabandt --- diff --git a/src/testdir/test_plugin_netrw.vim b/src/testdir/test_plugin_netrw.vim index 896e83ec46..a6dcf33e04 100644 --- a/src/testdir/test_plugin_netrw.vim +++ b/src/testdir/test_plugin_netrw.vim @@ -884,12 +884,12 @@ func Test_netrw_open_backslash_file() let dir = getcwd() . '/Xbslash' let fname = dir . '/\' - call mkdir(dir, 'p') + call mkdir(dir, 'pR') call writefile(['backslash file content'], fname) call assert_true(filereadable(fname)) " list the directory and move onto the '\' entry - exe 'Explore ' .. dir + exe 'Explore ' . dir call assert_true(search('^\\$', 'w') > 0) " open it diff --git a/src/version.c b/src/version.c index 89cd188cb5..910a5b3910 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 */ +/**/ + 763, /**/ 762, /**/