From bea9023d4260349c130faf447aa8d4cbadeffab2 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 26 Mar 2020 22:09:52 +0100 Subject: patch 8.2.0458: missing feature check in test function Problem: Missing feature check in test function. Solution: Add check commands. --- src/testdir/test_excmd.vim | 3 +++ src/version.c | 2 ++ 2 files changed, 5 insertions(+) diff --git a/src/testdir/test_excmd.vim b/src/testdir/test_excmd.vim index 755099c4e..ec252a660 100644 --- 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 index 4ae2b516d..46b58c2b2 100644 --- a/src/version.c +++ b/src/version.c @@ -738,6 +738,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 458, /**/ 457, /**/ -- cgit v1.2.1