summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-04-03 21:53:33 +0200
committerBram Moolenaar <Bram@vim.org>2019-04-03 21:53:33 +0200
commitb4e6a2d07510e18e6720d6b2ee0b029f95430964 (patch)
tree837c1fb1aa18240e7eac0bbb2716de5835b77d23
parent449ac47f931c99188575037ddfc5ee96f5200d2f (diff)
patch 8.1.1107: no test for 'visualbell'v8.1.1107
Problem: No test for 'visualbell'. Solution: Add a test.
-rw-r--r--src/testdir/test_options.vim7
-rw-r--r--src/version.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/src/testdir/test_options.vim b/src/testdir/test_options.vim
index 1bb0d3fcf3..241c7b6e02 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 9fd355ac42..e1809c63dc 100644
--- 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 */
/**/
+ 1107,
+/**/
1106,
/**/
1105,