diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-01-20 21:32:51 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-01-20 21:32:51 +0100 |
commit | ed5adff1e6da412732514d82363005f85fe22e04 (patch) | |
tree | 352a4661e3c74bb716725c1703923ecf02e99d39 /src/testdir/test_source.vim | |
parent | fe4bbac1166f2e4e3fa18cb966ec7305198c8176 (diff) | |
download | vim-git-ed5adff1e6da412732514d82363005f85fe22e04.tar.gz |
patch 8.2.0136: stray ch_logfile() callv8.2.0136
Problem: Stray ch_logfile() call.
Solution: Remove it. (closes #5503)
Diffstat (limited to 'src/testdir/test_source.vim')
-rw-r--r-- | src/testdir/test_source.vim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/testdir/test_source.vim b/src/testdir/test_source.vim index a5f5d1fd8..b8fe8422b 100644 --- a/src/testdir/test_source.vim +++ b/src/testdir/test_source.vim @@ -50,7 +50,6 @@ endfunc " When deleting a file and immediately creating a new one the inode may be " recycled. Vim should not recognize it as the same script. func Test_different_script() - call ch_logfile('logfile', 'w') call writefile(['let s:var = "asdf"'], 'XoneScript') source XoneScript call delete('XoneScript') |