From 31eb139b8877439d06db0ca57692dfe35fec3f0c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 9 Feb 2017 21:44:03 +0100 Subject: [PATCH] patch 8.0.0323: one second pause when running cmdline test Problem: When running the command line tests there is a one second wait. Solution: Change an Esc to Ctrl-C. (Yegappan Lakshmanan) --- src/testdir/test_cmdline.vim | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/testdir/test_cmdline.vim b/src/testdir/test_cmdline.vim index 0a5c91009..b2beb689b 100644 --- a/src/testdir/test_cmdline.vim +++ b/src/testdir/test_cmdline.vim @@ -353,7 +353,7 @@ func Test_getcmdtype() call feedkeys("?MyCmd a\=Check_cmdline('?')\\", "xt") call feedkeys(":call input('Answer?')\", "t") - call feedkeys("MyCmd a\=Check_cmdline('@')\\", "xt") + call feedkeys("MyCmd a\=Check_cmdline('@')\\", "xt") call feedkeys(":insert\MyCmd a\=Check_cmdline('-')\\", "xt") diff --git a/src/version.c b/src/version.c index c1a5186ba..a6dbe9946 100644 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 323, /**/ 322, /**/ -- 2.50.1