diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-12-27 21:42:57 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-12-27 21:42:57 +0000 |
commit | be4e223eadaa765bf2957f196e4d4b6014057bd1 (patch) | |
tree | 52609aabd2afd6214247abd639a8aaf52fd280b3 | |
parent | a4d131d11052cafcc5baad2273ef48e0dd4d09c5 (diff) | |
download | vim-git-be4e223eadaa765bf2957f196e4d4b6014057bd1.tar.gz |
patch 8.2.3918: function list test failsv8.2.3918
Problem: Function list test fails.
Solution: Adjust the test for the new location of the function list.
-rw-r--r-- | src/testdir/test_function_lists.vim | 11 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 7 insertions, 6 deletions
diff --git a/src/testdir/test_function_lists.vim b/src/testdir/test_function_lists.vim index 59180e329..50c89f8dc 100644 --- a/src/testdir/test_function_lists.vim +++ b/src/testdir/test_function_lists.vim @@ -1,7 +1,7 @@ " Test to verify that the three function lists, " " global_functions[] in src/evalfunc.c -" *functions* in runtime/doc/eval.txt +" *functions* in runtime/doc/builtin.txt " *function-list* in runtime/doc/usr_41.txt " " contain the same functions and that the global_functions and ":help @@ -55,16 +55,15 @@ func Test_function_lists() " Verify that the ":help functions" list is complete and in ASCII order. enew! - if filereadable('../../doc/eval.txt') + if filereadable('../../doc/builtin.txt') " unpacked MS-Windows zip archive - read ../../doc/eval.txt + read ../../doc/builtin.txt else - read ../../runtime/doc/eval.txt + read ../../runtime/doc/builtin.txt endif - call search('\*functions\*$') call search('^USAGE') 1,.d - call search('\*\K\k*()\*$') + call search('^==========') .,$d v/^\S/d %s/(.*// diff --git a/src/version.c b/src/version.c index 1a71a53c8..4e6c07b9f 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3918, +/**/ 3917, /**/ 3916, |