# HG changeset patch # User Bram Moolenaar # Date 1579553104 -3600 # Node ID 9efea787c3a6523e4714b094ea5415f872689d33 # Parent ee57a52a453982cec0b6705e21baf58f4026680f patch 8.2.0136: stray ch_logfile() call Commit: https://github.com/vim/vim/commit/ed5adff1e6da412732514d82363005f85fe22e04 Author: Bram Moolenaar Date: Mon Jan 20 21:32:51 2020 +0100 patch 8.2.0136: stray ch_logfile() call Problem: Stray ch_logfile() call. Solution: Remove it. (closes https://github.com/vim/vim/issues/5503) diff --git a/src/testdir/test_source.vim b/src/testdir/test_source.vim --- 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') diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 136, +/**/ 135, /**/ 134,