vim-patch:8.0.0326

Problem:    Packadd test uses wrong directory name.
Solution:   Use the variable name value. (Hirohito Higashi)

24f8f543d4
This commit is contained in:
James McCoy 2017-08-21 12:38:24 -04:00
parent 24a5564196
commit 651c6f9b6e
No known key found for this signature in database
GPG Key ID: DFE691AE331BA3DB
2 changed files with 3 additions and 3 deletions

View File

@ -626,7 +626,7 @@ static const int included_patches[] = {
// 329,
// 328,
// 327,
// 326,
326,
325,
// 324,
// 323,

View File

@ -89,7 +89,7 @@ describe('packadd', function()
endif
let top2_dir = s:topdir . '/Xdir2'
let real_dir = s:topdir . '/Xsym'
silent !ln -s real_dir top2_dir
exec "silent! !ln -s" real_dir top2_dir
let &rtp = top2_dir . ',' . top2_dir . '/after'
let &packpath = &rtp
@ -114,7 +114,7 @@ describe('packadd', function()
set rtp&
let rtp = &rtp
silent !rm top2_dir
exec "silent !rm" top2_dir
endfunc
func Test_packloadall()