# HG changeset patch # User Bram Moolenaar # Date 1617130804 -7200 # Node ID 477b0a892a85ec0397c78fa5c981ca4d63dbab9b # Parent cabed216cc2fb2db4483e8db03d94ec3de9d3bc6 patch 8.2.2678: test for 'autoshelldir' does not reset the option Commit: https://github.com/vim/vim/commit/82820d9bf14ba5374c24fff2ed6e577a67c6ddf2 Author: Bram Moolenaar Date: Tue Mar 30 20:54:28 2021 +0200 patch 8.2.2678: test for 'autoshelldir' does not reset the option Problem: Test for 'autoshelldir' does not reset the option. Solution: Reset the option after testing. diff --git a/src/testdir/test_terminal3.vim b/src/testdir/test_terminal3.vim --- a/src/testdir/test_terminal3.vim +++ b/src/testdir/test_terminal3.vim @@ -502,6 +502,8 @@ func Test_terminal_sync_shell_dir() let expected = tmpfolder endif call assert_equal(expected, getcwd(winnr())) + + set noasd endfunc " Test for modeless selection in a terminal diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2678, +/**/ 2677, /**/ 2676,