# HG changeset patch # User Bram Moolenaar # Date 1638567004 -3600 # Node ID 9a7fb0665f9f80bc465f7bf0353efa1f72291e23 # Parent 71b8e7b260c721fc6150bd1db09504973445094e patch 8.2.3732: "set! termcap" test fails Commit: https://github.com/vim/vim/commit/cd2f8f0e0007bb77fc2035e6ad6227bb6661c612 Author: Bram Moolenaar Date: Fri Dec 3 21:18:14 2021 +0000 patch 8.2.3732: "set! termcap" test fails Problem: "set! termcap" test fails. Solution: Account for keys without a t_xx entry. diff --git a/src/testdir/test_set.vim b/src/testdir/test_set.vim --- a/src/testdir/test_set.vim +++ b/src/testdir/test_set.vim @@ -62,7 +62,7 @@ func Test_set_termcap() endfor call assert_true(keys_idx < len(lines)) " three columns - call assert_match('t_.. .*t_.. .*t_.. ', lines[keys_idx + 1]) + call assert_match('<[^>]*> .*<[^>]*> .*<[^>]*> ', lines[keys_idx + 1]) let more_lines = split(execute('set! termcap'), "\n") for i in range(len(more_lines)) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3732, +/**/ 3731, /**/ 3730,