0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

patch 8.2.0386: part from unfinished patch got included

Problem:    Part from unfinished patch got included.
Solution:   Undo that part.
This commit is contained in:
Bram Moolenaar
2020-03-15 16:51:40 +01:00
parent 0eabd4dc8f
commit 0bdbc10e8a
2 changed files with 3 additions and 11 deletions

View File

@@ -2470,17 +2470,7 @@ f_feedkeys(typval_T *argvars, typval_T *rettv UNUSED)
if (lowlevel) if (lowlevel)
{ {
#ifdef USE_INPUT_BUF #ifdef USE_INPUT_BUF
int idx; add_to_input_buf(keys, (int)STRLEN(keys));
int len = (int)STRLEN(keys);
for (idx = 0; idx < len; ++idx)
{
// if a CTRL-C was typed, set got_int
if (keys[idx] == 3 && ctrl_c_interrupts)
got_int = TRUE;
else
add_to_input_buf(keys + idx, 1);
}
#else #else
emsg(_("E980: lowlevel input not supported")); emsg(_("E980: lowlevel input not supported"));
#endif #endif

View File

@@ -738,6 +738,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
386,
/**/ /**/
385, 385,
/**/ /**/