# HG changeset patch # User Christian Brabandt # Date 1486673104 -3600 # Node ID 9a5a4b36a1c1f0e1d30077b54d66327daa0f0eb1 # Parent f1f94286080604e58d9d4cffc393d09bf4e60d33 patch 8.0.0323: one second pause when running cmdline test commit https://github.com/vim/vim/commit/31eb139b8877439d06db0ca57692dfe35fec3f0c Author: Bram Moolenaar Date: Thu Feb 9 21:44:03 2017 +0100 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) diff --git a/src/testdir/test_cmdline.vim b/src/testdir/test_cmdline.vim --- 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 --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 323, +/**/ 322, /**/ 321,