diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-08-29 13:32:19 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-08-30 21:12:26 -0400 |
commit | 52a2a1b3d2836b77cfaf2bd6025ce30a90669fc9 (patch) | |
tree | 4f1749b17f29dafb87ca358401e6f7e21914e400 | |
parent | 697a6ca2e4d3546432284f0dc7f60edff0cad4ef (diff) | |
download | rneovim-52a2a1b3d2836b77cfaf2bd6025ce30a90669fc9.tar.gz rneovim-52a2a1b3d2836b77cfaf2bd6025ce30a90669fc9.tar.bz2 rneovim-52a2a1b3d2836b77cfaf2bd6025ce30a90669fc9.zip |
vim-patch:8.1.1694: the RUN_VIM variable is longer than needed
Problem: The RUN_VIM variable is longer than needed.
Solution: Shorten RUN_VIM. (Daniel Hahler, closes vim/vim#4643)
https://github.com/vim/vim/commit/41a82604453080d0011f281532582d3bd360df4a
-rw-r--r-- | src/nvim/testdir/shared.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/shared.vim b/src/nvim/testdir/shared.vim index d56fff1fe8..6180d542ff 100644 --- a/src/nvim/testdir/shared.vim +++ b/src/nvim/testdir/shared.vim @@ -271,7 +271,7 @@ func GetVimCommand(...) let cmd = cmd . ' -u ' . name endif let cmd .= ' --headless -i NONE' - let cmd = substitute(cmd, 'VIMRUNTIME=.*VIMRUNTIME;', '', '') + let cmd = substitute(cmd, 'VIMRUNTIME=\S\+', '', '') " If using valgrind, make sure every run uses a different log file. if cmd =~ 'valgrind.*--log-file=' |