diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-10-16 16:48:27 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-10-16 16:48:27 +0100 |
commit | abdcfd1c837e244065d4fe04c7a78abae5af3f7e (patch) | |
tree | e7f9a8816449509aa6ac322130bf2bfb04f5133b | |
parent | 160e994d768d03a3c826b58115cde94df8fce607 (diff) | |
download | vim-git-abdcfd1c837e244065d4fe04c7a78abae5af3f7e.tar.gz |
patch 8.2.3521: options completion test failsv8.2.3521
Problem: Options completion test fails.
Solution: Add 'thesaurusfunc' to the results.
-rw-r--r-- | src/testdir/test_options.vim | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/testdir/test_options.vim b/src/testdir/test_options.vim index e10ad5445..3e9bbf46e 100644 --- a/src/testdir/test_options.vim +++ b/src/testdir/test_options.vim @@ -256,7 +256,7 @@ func Test_set_completion() " Expand abbreviation of options. call feedkeys(":set ts\<C-A>\<C-B>\"\<CR>", 'tx') - call assert_equal('"set tabstop thesaurus ttyscroll', @:) + call assert_equal('"set tabstop thesaurus thesaurusfunc ttyscroll', @:) " Expand current value call feedkeys(":set fileencodings=\<C-A>\<C-B>\"\<CR>", 'tx') diff --git a/src/version.c b/src/version.c index 00617b5c9..16e49ac4c 100644 --- a/src/version.c +++ b/src/version.c @@ -758,6 +758,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3521, +/**/ 3520, /**/ 3519, |