0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 7.4.1151

Problem:    Missing change to eval.c
Solution:   Also change feedkeys().
This commit is contained in:
Bram Moolenaar
2016-01-21 23:34:58 +01:00
parent 25281634cd
commit 5f8a14b9de
2 changed files with 6 additions and 0 deletions

View File

@@ -10960,6 +10960,7 @@ f_feedkeys(argvars, rettv)
char_u *keys, *flags;
char_u nbuf[NUMBUFLEN];
int typed = FALSE;
int execute = FALSE;
char_u *keys_esc;
/* This is not allowed in the sandbox. If the commands would still be
@@ -10982,6 +10983,7 @@ f_feedkeys(argvars, rettv)
case 'm': remap = TRUE; break;
case 't': typed = TRUE; break;
case 'i': insert = TRUE; break;
case 'x': execute = TRUE; break;
}
}
}
@@ -10996,6 +10998,8 @@ f_feedkeys(argvars, rettv)
vim_free(keys_esc);
if (vgetc_busy)
typebuf_was_filled = TRUE;
if (execute)
exec_normal(TRUE);
}
}
}

View File

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