patch 9.2.0763: tests: style issue in test_plugin_netrw
Commit:
https://github.com/vim/vim/commit/1ebd2fdb78ead0f46dd049f39c3d4cfef951dad8
Author: Christian Brabandt <
c...@256bit.org>
Date: Thu Jul 2 08:12:32 2026 +0200
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 <
c...@256bit.org>
diff --git a/src/testdir/test_plugin_netrw.vim b/src/testdir/test_plugin_netrw.vim
index 896e83ec4..a6dcf33e0 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 89cd188cb..910a5b391 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,
/**/