From: Bram Moolenaar Date: Tue, 14 Jun 2022 20:22:12 +0000 (+0100) Subject: patch 8.2.5096: terminal test still fails with some shell commands X-Git-Tag: v8.2.5096 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=377d92a912d4d11a336322a6eeff128cf8ebb5fa;p=thirdparty%2Fvim.git patch 8.2.5096: terminal test still fails with some shell commands Problem: Terminal test still fails with some shell commands. Solution: Add missing "call". (closes #10530) --- diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim index b64d5cf414..d0f1438507 100644 --- a/src/testdir/test_terminal.vim +++ b/src/testdir/test_terminal.vim @@ -1222,7 +1222,7 @@ func Test_terminal_qall_prompt() let buf = RunVimInTerminal('', {}) " the shell may set the window title, we don't want that here - call term_sendkeys(buf, ":test_override('vterm_title', 1)\") + call term_sendkeys(buf, ":call test_override('vterm_title', 1)\") " Open a terminal window and wait for the prompt to appear call term_sendkeys(buf, ":term\") diff --git a/src/version.c b/src/version.c index e4d5553404..3ee54db42b 100644 --- a/src/version.c +++ b/src/version.c @@ -734,6 +734,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 5096, /**/ 5095, /**/