# HG changeset patch # User Bram Moolenaar # Date 1585257304 -3600 # Node ID 71911b1dc3f91a0a869697ddcf92f4cf62d6625d # Parent d99db17de953cba9967bf18bd825b3da554343e2 patch 8.2.0458: missing feature check in test function Commit: https://github.com/vim/vim/commit/bea9023d4260349c130faf447aa8d4cbadeffab2 Author: Bram Moolenaar Date: Thu Mar 26 22:09:52 2020 +0100 patch 8.2.0458: missing feature check in test function Problem: Missing feature check in test function. Solution: Add check commands. diff --git a/src/testdir/test_excmd.vim b/src/testdir/test_excmd.vim --- a/src/testdir/test_excmd.vim +++ b/src/testdir/test_excmd.vim @@ -247,6 +247,9 @@ func Test_confirm_cmd() endfunc func Test_confirm_cmd_cancel() + CheckNotGui + CheckRunVimInTerminal + " Test for closing a window with a modified buffer let buf = RunVimInTerminal('', {'rows': 20}) call term_sendkeys(buf, ":set nomore\n") diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -739,6 +739,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 458, +/**/ 457, /**/ 456,