From b4e6a2d07510e18e6720d6b2ee0b029f95430964 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 3 Apr 2019 21:53:33 +0200 Subject: [PATCH] patch 8.1.1107: no test for 'visualbell' Problem: No test for 'visualbell'. Solution: Add a test. --- src/testdir/test_options.vim | 7 ++++++- src/version.c | 2 ++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/testdir/test_options.vim b/src/testdir/test_options.vim index 1bb0d3fcf..241c7b6e0 100644 --- a/src/testdir/test_options.vim +++ b/src/testdir/test_options.vim @@ -536,5 +536,10 @@ func Test_writedelay() call assert_inrange(30 * 0.01, 999.0, elapsed) bwipe! - delfunc ChangeText +endfunc + +func Test_visualbell() + set visualbell + call assert_beeps('normal 0h') + set novisualbell endfunc diff --git a/src/version.c b/src/version.c index 9fd355ac4..e1809c63d 100644 --- a/src/version.c +++ b/src/version.c @@ -771,6 +771,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1107, /**/ 1106, /**/ -- 2.50.1