0
0
mirror of https://github.com/vim/vim.git synced 2025-10-04 05:25:06 -04:00

patch 8.1.1846: inconsistently using GetVimCommand() and v:progpath

Problem:    Inconsistently using GetVimCommand() and v:progpath. (Daniel
            Hahler)
Solution:   Use GetVimCommand(). (closes #4806)
This commit is contained in:
Bram Moolenaar
2019-08-14 21:12:05 +02:00
parent 6ace95e981
commit 93344c2d70
8 changed files with 45 additions and 39 deletions

View File

@@ -2,6 +2,7 @@
" Most of this was formerly in test49.
source check.vim
source shared.vim
"-------------------------------------------------------------------------------
" Test environment {{{1
@@ -1721,7 +1722,7 @@ func Test_function_defined_line()
[CODE]
call writefile(lines, 'Xtest.vim')
let res = system(v:progpath .. ' --clean -es -X -S Xtest.vim')
let res = system(GetVimCommandClean() .. ' -es -X -S Xtest.vim')
call assert_equal(0, v:shell_error)
let m = matchstr(res, 'function F1()[^[:print:]]*[[:print:]]*')