summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-06-14 21:22:12 +0100
committerBram Moolenaar <Bram@vim.org>2022-06-14 21:22:12 +0100
commit377d92a912d4d11a336322a6eeff128cf8ebb5fa (patch)
tree2c4b3ff07ef0c8b9d55d0eb3d5b2d480c6f16d46
parent99f4b6e0824b339510aaaa0bb81c50f5866f6be1 (diff)
downloadvim-git-377d92a912d4d11a336322a6eeff128cf8ebb5fa.tar.gz
patch 8.2.5096: terminal test still fails with some shell commandsv8.2.5096
Problem: Terminal test still fails with some shell commands. Solution: Add missing "call". (closes #10530)
-rw-r--r--src/testdir/test_terminal.vim2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim
index b64d5cf41..d0f143850 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)\<CR>")
+ call term_sendkeys(buf, ":call test_override('vterm_title', 1)\<CR>")
" Open a terminal window and wait for the prompt to appear
call term_sendkeys(buf, ":term\<CR>")
diff --git a/src/version.c b/src/version.c
index e4d555340..3ee54db42 100644
--- a/src/version.c
+++ b/src/version.c
@@ -735,6 +735,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 5096,
+/**/
5095,
/**/
5094,