# HG changeset patch # User Bram Moolenaar # Date 1617456621 -7200 # Node ID 10c39822f4965bbb2c275b863531a75aab18a992 # Parent 7482f98856ae5c2d5cfc6e35114c0e6646279dab patch 8.2.2697: function list test fails Commit: https://github.com/vim/vim/commit/0df603014589c663f4b49dc6fd36c3b99db1718f Author: Bram Moolenaar Date: Sat Apr 3 15:15:47 2021 +0200 patch 8.2.2697: function list test fails Problem: Function list test fails. Solution: Add missing function. (Yegappan Lakshmanan) diff --git a/runtime/doc/usr_41.txt b/runtime/doc/usr_41.txt --- a/runtime/doc/usr_41.txt +++ b/runtime/doc/usr_41.txt @@ -1003,6 +1003,7 @@ Testing: *test-functions* assert_true() assert that an expression is true assert_exception() assert that a command throws an exception assert_beeps() assert that a command beeps + assert_nobeep() assert that a command does not cause a beep assert_fails() assert that a command fails assert_report() report a test failure test_alloc_fail() make memory allocation fail diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2697, +/**/ 2696, /**/ 2695,