changeset 29153:5fb3e2a89d7a v8.2.5096

patch 8.2.5096: terminal test still fails with some shell commands Commit: https://github.com/vim/vim/commit/377d92a912d4d11a336322a6eeff128cf8ebb5fa Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jun 14 21:22:12 2022 +0100 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 https://github.com/vim/vim/issues/10530)
author Bram Moolenaar <Bram@vim.org>
date Tue, 14 Jun 2022 22:30:03 +0200
parents d78b32c2ab40
children e01302a9d6c8
files src/testdir/test_terminal.vim src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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>")
--- 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,