0
0
mirror of https://github.com/vim/vim.git synced 2025-10-13 06:54:15 -04:00

patch 8.2.0662: cannot use input() in a channel callback

Problem:    Cannot use input() in a channel callback.
Solution:   Reset vgetc_busy. (closes #6010)
This commit is contained in:
Bram Moolenaar
2020-04-29 22:30:13 +02:00
parent 339d60c89b
commit dfc33a665d
5 changed files with 33 additions and 3 deletions

View File

@@ -2149,7 +2149,7 @@ f_eval(typval_T *argvars, typval_T *rettv)
static void
f_eventhandler(typval_T *argvars UNUSED, typval_T *rettv)
{
rettv->vval.v_number = vgetc_busy;
rettv->vval.v_number = vgetc_busy || input_busy;
}
static garray_T redir_execute_ga;
@@ -2566,7 +2566,7 @@ f_feedkeys(typval_T *argvars, typval_T *rettv UNUSED)
#ifdef FEAT_TIMERS
|| timer_busy
#endif
)
|| input_busy)
typebuf_was_filled = TRUE;
}
vim_free(keys_esc);
@@ -2887,7 +2887,7 @@ f_funcref(typval_T *argvars, typval_T *rettv)
}
static type_T *
ret_f_function(int argcount, type_T **argtypes UNUSED)
ret_f_function(int argcount, type_T **argtypes)
{
if (argcount == 1 && argtypes[0]->tt_type == VAR_STRING)
return &t_func_any;