# HG changeset patch # User Bram Moolenaar # Date 1554325204 -7200 # Node ID d302c496e98b6d4b58054dc9cd68de039d7f0a4c # Parent 811ef62e4751be8d0d79019ecc90e6e6cbd013ec patch 8.1.1108: test for 'visualbell' doesn't work commit https://github.com/vim/vim/commit/7a66627cf43412604a28e0d99df8f96a29ff1c3a Author: Bram Moolenaar Date: Wed Apr 3 22:52:34 2019 +0200 patch 8.1.1108: test for 'visualbell' doesn't work Problem: Test for 'visualbell' doesn't work. Solution: Make 'belloff' empty. diff --git a/src/testdir/test_options.vim b/src/testdir/test_options.vim --- a/src/testdir/test_options.vim +++ b/src/testdir/test_options.vim @@ -539,7 +539,9 @@ func Test_writedelay() endfunc func Test_visualbell() + set belloff= set visualbell call assert_beeps('normal 0h') set novisualbell + set belloff=all endfunc diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -772,6 +772,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1108, +/**/ 1107, /**/ 1106,