# HG changeset patch # User Bram Moolenaar # Date 1634400005 -7200 # Node ID 7b2e2b9617ee2a2354e3ea7fbc93274baf892db9 # Parent 11cfbeb809d36b0bf4084b33a0969eb7d9bc224e patch 8.2.3521: options completion test fails Commit: https://github.com/vim/vim/commit/abdcfd1c837e244065d4fe04c7a78abae5af3f7e Author: Bram Moolenaar Date: Sat Oct 16 16:48:27 2021 +0100 patch 8.2.3521: options completion test fails Problem: Options completion test fails. Solution: Add 'thesaurusfunc' to the results. 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 @@ -256,7 +256,7 @@ func Test_set_completion() " Expand abbreviation of options. call feedkeys(":set ts\\\"\", 'tx') - call assert_equal('"set tabstop thesaurus ttyscroll', @:) + call assert_equal('"set tabstop thesaurus thesaurusfunc ttyscroll', @:) " Expand current value call feedkeys(":set fileencodings=\\\"\", 'tx') diff --git a/src/version.c b/src/version.c --- 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,