0
0
mirror of https://github.com/vim/vim.git synced 2025-10-13 06:54:15 -04:00

patch 8.1.1352: undofile() reports wrong name

Problem:    Undofile() reports wrong name. (Francisco Giordano)
Solution:   Clean up the name before changing path separators. (closes #4392,
            closes #4394)
This commit is contained in:
Bram Moolenaar
2019-05-19 15:27:14 +02:00
parent 338dfdad38
commit e9ebc9a91c
3 changed files with 8 additions and 1 deletions

View File

@@ -15128,7 +15128,7 @@ f_undofile(typval_T *argvars UNUSED, typval_T *rettv)
}
else
{
char_u *ffname = FullName_save(fname, FALSE);
char_u *ffname = FullName_save(fname, TRUE);
if (ffname != NULL)
rettv->vval.v_string = u_get_undo_file_name(ffname, FALSE);