0
0
mirror of https://github.com/vim/vim.git synced 2025-08-22 19:27:53 -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 else
{ {
char_u *ffname = FullName_save(fname, FALSE); char_u *ffname = FullName_save(fname, TRUE);
if (ffname != NULL) if (ffname != NULL)
rettv->vval.v_string = u_get_undo_file_name(ffname, FALSE); rettv->vval.v_string = u_get_undo_file_name(ffname, FALSE);

View File

@ -440,5 +440,10 @@ funct Test_undofile()
" Test undofile() with 'undodir' set to a non-existing directory. " Test undofile() with 'undodir' set to a non-existing directory.
call assert_equal('', undofile('Xundofoo')) call assert_equal('', undofile('Xundofoo'))
if isdirectory('/tmp')
set undodir=/tmp
call assert_equal('/tmp/%tmp%file', undofile('///tmp/file'))
endif
set undodir& set undodir&
endfunc endfunc

View File

@ -767,6 +767,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
1352,
/**/ /**/
1351, 1351,
/**/ /**/