0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

patch 8.2.1804: resolve('/') returns an empty string

Problem:    resolve('/') returns an empty string.
Solution:   Don't remove single slash. (closes #7074)
This commit is contained in:
Bram Moolenaar
2020-10-05 20:38:06 +02:00
parent afe8cf6170
commit 50c4e9e08f
3 changed files with 5 additions and 1 deletions

View File

@@ -339,6 +339,8 @@ func Test_resolve_unix()
call assert_equal('Xlink2', resolve('Xlink1'))
call assert_equal('./Xlink2', resolve('./Xlink1'))
call delete('Xlink1')
call assert_equal('/', resolve('/'))
endfunc
func s:normalize_fname(fname)